php中的图像水印

php中的图像水印,php,gd,watermark,Php,Gd,Watermark,我想给图像加水印并保存它。这是我正在使用的代码。在这里,它输出图像并将输出存储到文件中。我想保存它而不输出它 // 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 heigh

我想给图像加水印并保存它。这是我正在使用的代码。在这里,它输出图像并将输出存储到文件中。我想保存它而不输出它

// 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 );
是否将其保存到文件

简单地改变

imagejpeg($im, NULL, 85);


问题是它将“”输出到屏幕上。我不想要任何关于输出的东西。已经修复了它…只是省略了输出缓冲区
imagejpeg($im, 'image.jpg', 85);