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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -