кривые миниатюры
код такой:
Код:
$image = ImageCreateFromJPEG("gallerys/$gal/".$imgnote[0]);
$width = imagesx($image);
$height = imagesy($image);
if(!file_exists("gallerys/$gal/sm_".$imgnote[0])) {
$new_width = 150;
$new_height = ($new_width * $height) / $width ;
$thumb = imagecreate($new_width,$new_height);
imagecopyresized($thumb,$image,0,0,0,0,$new_width,$new_height,$width,$height);
ImageJPEG($thumb, "gallerys/$gal/sm_".$imgnote[0]);
}
imagedestroy($image);
$width = imagesx($image);
$height = imagesy($image);
if(!file_exists("gallerys/$gal/sm_".$imgnote[0])) {
$new_width = 150;
$new_height = ($new_width * $height) / $width ;
$thumb = imagecreate($new_width,$new_height);
imagecopyresized($thumb,$image,0,0,0,0,$new_width,$new_height,$width,$height);
ImageJPEG($thumb, "gallerys/$gal/sm_".$imgnote[0]);
}
imagedestroy($image);
Цитата:
Originally posted by A.D.I.D.A.S
У них что-то с цветом случается - очень фигово смотрятся
код такой:
У них что-то с цветом случается - очень фигово смотрятся
код такой:
Код:
$thumb = imagecreate($new_width,$new_height);
Код:
imagecreatetruecolor($new_width, $new_height);
каюсь, мануалы недостаточно покопал