Ben mevcut görüntüleri kullanarak jpeg görüntüsünü oluşturmak için aşağıdaki kodu kullanmış. Bu görüntüler gömülü renk profilini, Adobe1998 renk profilini kullandık.
header("Content-type: image/jpeg");
$src = imagecreatefromjpeg($upfile);
$dst = imagecreatetruecolor($tn_width, $tn_height);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $tn_width, $tn_height, $width, $height);
imagejpeg($dst,NULL,100);
imagedestroy($src);
imagedestroy($dst);
The problem here is that when the image is displayed embedded color profile is not seen. Can anyone help me? What may be the problem ?
Şimdiden teşekkürler