PHP resize image from FTP -


i need resize image ftp /images/1_2.jpg. need load imagecreatefromjpeg();. script looks this.

$file = "images/1_2.jpg";  $imagesize = getimagesize($file);  $img = imagecreatefromjpeg($file);   $width = 70; $height = 100;  $img2 = imagecreatetruecolor($width, $height);  imagecopyresampled($img2, $img, 0, 0, 0, 0, $width, $height, $imagesize[0], $imagesize[1]);  imagejpeg($img2, "images_mini/1_2.jpg"); 

my problem images don't upload ftp, shows me ok can't find images on ftp.

sorry have it, bad converted variable, using cross languages application dificult check everythink. thank anyway.


Comments