View Single Post
ישן 12-07-07, 10:53   # 1
al_n
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
גיל: 34
הודעות: 449

al_n לא מחובר  

[עזרה] הקטנת תמונת PNG שקופה עם GD

PHP קוד:
$filename "uploads/".$_GET['f'].".".$_GET['ext'];
$picW $_GET['w'];
$picH $_GET['h'];

header('Content-type: image/'.$_GET['ext']);

list(
$width$height) = getimagesize($filename);
$newwidth $picW;
$newheight $picH;

$thumb imagecreatetruecolor($newwidth$newheight);

$source imagecreatefrompng($filename);

imagecopyresized($thumb$source0000$newwidth$newheight$width$height);


imagepng($thumb);

ImageDestroy($thumb); 
זה הקוד שלי, הוא עובד רק שהוא יוצר רקע שחור ל PNG השקוף....
מה עושים?

עריכה: עוד משהו שנזכרתי, יש למישהו מושג איך אני עושה שברגע שילחצו קליק ימני - שמירת תמונה בשם זה ישמור להם ישר את התמונה ולא xx.php??

Last edited by al_n; 12-07-07 at 11:21..
  Reply With Quote