I want to watermark an image and save it. here is the code i am using for it. Here it is outputing the image and is storing that output to the file. I want to save it without outputting it. How can i do that?

// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('proverbs.jpeg');

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
  imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy -   $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
ob_start();
// output jpeg (or any other chosen) format & quality
imagejpeg($im, NULL, 85);
// capture output to string
$contents = ob_get_contents();
// end capture
ob_end_clean();
//imagepng($im);
imagedestroy($im);
$fh = fopen("proverbs.jpeg", "w" );
fwrite( $fh, $contents );
fclose( $fh );
link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Saving it to a file?

Simply change

imagejpeg($im, NULL, 85);

to

imagejpeg($im, 'image.jpg', 85);
link|improve this answer
probelm is that its outputting "localhost/image/index.php"; on to the screen. I don't want anything on the output – Jasim Oct 20 '09 at 11:14
1  
Have fixed it...simply omitting the output buffer – Jasim Oct 20 '09 at 11:16
awesome! great work =) – mauris Oct 20 '09 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.