hi 
i'm having problems resizing jpegs.
here's an e.g. using manual example.
code used :
<?
$new_w=395;
$new_h=297;
header("Content-type: image/jpeg");
$dst_img=ImageCreate($new_w,$new_h);
$src_img=ImageCreateFromJpeg($name);
ImageCopyResized($dst_img,$src_img,0,0,0,0,$new_w,$new_h,ImageSX($src_img),ImageSY($src_img));
ImageJpeg($dst_img);
?>

and the result can be seen here.
http://www.sitestogo.biz/temp/test.php

i'm wondering if it's to do with the gd library installed.

Reply via email to