Question

I am trying to convert a jpeg image to black & white (grayscale) through the php function IMG_FILTER_GRAYSCALE . It works fine but i would like to save the image into a folder.

Below the code:

$im = imagecreatefromjpeg('pathtomyimage/myimage.jpg');
if($im && imagefilter($im, IMG_FILTER_GRAYSCALE)) {
 header('Content-Type: image/jpeg');
 imagejpeg($im);
} else 
 print 'Error during the b & w conversion';

Very simple after all...

In this way it prints the b & w image on the screen and i see it on my browser but i'm not able to save it into a folder (e.g. img/bw/myimage.jpg).

There's a way to do it? How can i do it?

Was it helpful?

Solution

From the manual:

imagejpeg($im, 'img/bw/myimage.jpg');

OTHER TIPS

You can use imagejpeg in this way to store your image into a folder :

imagejpeg($image, "/path/to/store/file.jpg");

you can use like this

$tmp=imagecreatetruecolor($newwidth,$newheight);

    $newwidth1=120;
    $newheight1=150;
    $tmp1=imagecreatetruecolor($newwidth1,$newheight1);

    imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,
     $width,$height);

    imagecopyresampled($tmp1,$src,0,0,0,0,$newwidth1,$newheight1, 
    $width,$height);

    $filename = "../Advertisement/". $_FILES['img']['name'];
    $filename1 = "../Advertisement/small". $_FILES['img']['name'];

    $filename2 = $_FILES['img']['name'];
    imagejpeg($tmp,$filename,100);
    imagejpeg($tmp1,$filename1,100);

    imagedestroy($src);
    imagedestroy($tmp);
    imagedestroy($tmp1);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top