Skip to content

Instantly share code, notes, and snippets.

@pawiromitchel
Created January 27, 2017 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pawiromitchel/dd151d649abaaf75d3c66e09164e0405 to your computer and use it in GitHub Desktop.
Save pawiromitchel/dd151d649abaaf75d3c66e09164e0405 to your computer and use it in GitHub Desktop.
PHP - watermarking images
<?php
function watermark_image($target, $wtrmrk_file, $newcopy)
{
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng($wtrmrk_file);
$im = imagecreatefromjpeg($target);
// 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));
imagejpeg($im, $newcopy, 100);
// Output and free memory
imagedestroy($im);
return $newcopy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment