Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP imagejpeg save file doesn't work

Tags:

php

jpeg

I have php code to trim white outer border and resize. When I use imagejpeg($newImage) to output it the browser it works fine but when I try to save to using imagejpeg($newImage, 'test.jpg') it doesn't get saved anywhere. Help please?

$im = imagecreatefromjpeg($src);
$bg = imagecolorallocate($im,$rgb,$rgb,$rgb);


 // Set the header and output image.
header('Content-type: image/jpeg');
imagetrim($im,$bg);
$width = imagesx($im);
$height = imagesy($im);
$newHeight = $height * $newWidth/$width;

$newImage = imagecreatetruecolor($newWidth, $newHeight);
imagecopyresampled($newImage, $im, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height); 
//imagejpeg($newImage);
//header('Content-Type: image/jpeg');
imagejpeg($newImage, 'test.jpg');
imagejpeg($newImage);
imagedestroy($im);
imagedestroy($newImage);
like image 238
Shubo Avatar asked Jul 13 '11 00:07

Shubo


1 Answers

Just to put an answer in the answer box the problem is that the file permissions were not good. Before writing a file in PHP, do not forget to test the place you want to save files by using is_writable

like image 79
Triomen Avatar answered Sep 22 '22 12:09

Triomen