LiFe
Новичок
Наложить на JPG - > GIF
Добрый день у меня такой вопрос ! как наложить Gif на JPG
При том что у меня JPG при загрузке уменьшаеться и подгоняеться под мой размер
$fichier = $dir.'/'.$file;
if (file_exists($dir.'/'.$file))
{
$image = ImageCreateFromJPEG($fichier);
$width = imagesx($image) ;
$height = imagesy($image) ;
$new_width = 298;
$new_height = ($new_width * $height) / $width ;
$thumb = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($tsdefrhumb,$image,0,0,0,0,$new_width,$new_height,$width,$height);
ImageJPEG($thumb, $dir.'/'.$file, 60);
imagedestroy($image);
}
Добрый день у меня такой вопрос ! как наложить Gif на JPG
При том что у меня JPG при загрузке уменьшаеться и подгоняеться под мой размер
$fichier = $dir.'/'.$file;
if (file_exists($dir.'/'.$file))
{
$image = ImageCreateFromJPEG($fichier);
$width = imagesx($image) ;
$height = imagesy($image) ;
$new_width = 298;
$new_height = ($new_width * $height) / $width ;
$thumb = imagecreatetruecolor($new_width, $new_height);
imagecopyresampled($tsdefrhumb,$image,0,0,0,0,$new_width,$new_height,$width,$height);
ImageJPEG($thumb, $dir.'/'.$file, 60);
imagedestroy($image);
}
