10. april 2003 - 11:43
Der er
5 kommentarer og 1 løsning
imagecreatetruecolor
Jeg har et problem med imagecreatetruecolor: Kode: --------------------------------- $dest_width = 99; $dest_height = 99; $quality = 90; $src_img = imagecreatefromjpeg("images/AUT_0041.jpg"); $dst_img = imagecreatetruecolor($dest_width,$dest_height); imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dest_width, $dest_height, $src_width, $src_height); imagejpeg($dst_img, "/images/new_file.jpg", $quality); imagedestroy($src_img); imagedestroy($dst_img); --------------------------------------- Mit nye billede er bare en sort firkant hvad er problemet?
Annonceindlæg fra Infor
10. april 2003 - 11:44
#1
GD 2.0 er installeret...
10. april 2003 - 12:19
#2
du skal nok give $src_width, $src_height nogle values...
10. april 2003 - 12:45
#3
Ja det ved jeg men hvilke?
10. april 2003 - 12:55
#5
$dest_width = 35; $dest_height = 48; $quality = 90; $size=getimagesize("sjov.jpg"); $src_width=$size[0]; $src_height=$size[1]; $src_img = imagecreatefromjpeg("images/AUT_0041.jpg"); $dst_img = imagecreatetruecolor($dest_width,$dest_height); imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $dest_width, $dest_height, $src_width, $src_height); imagejpeg($dst_img, "/images/new_file.jpg", $quality); imagedestroy($src_img); imagedestroy($dst_img); tror det her vil virke...
10. april 2003 - 13:26
#6
skulle selvfølgelig have været: $dest_width = 99; $dest_height = 99; $quality = 90; $size=getimagesize("images/AUT_0041.jpg");
Vi tilbyder markedets bedste kurser inden for webudvikling