View Single Post
ישן 19-06-10, 22:55   # 2
~The_Sultan~
חבר על
 
מיני פרופיל
תאריך הצטרפות: Oct 2008
הודעות: 771

~The_Sultan~ לא מחובר  

מצאתי את זה ב-PHP.NET:
PHP קוד:
Don't forget about imagealphablending() and imagesavealpha() if you're working with [semi]transparent png.

<?php
$file 
'semitransparent.png'// path to png image
$img imagecreatefrompng($file); // open image
imagealphablending($imgtrue); // setting alpha blending on
imagesavealpha($imgtrue); // save alphablending setting (important)
?>
ותעיין אולי בפונקציה הזו: http://www.php.net/manual/en/functio...ransparent.php

בהצלחה
  Reply With Quote