php
php 이미지 워터마크
xemaker
2017. 11. 23. 13:12
<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
// 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,"aa.png");
//png 파일을 imagejpeg 하면 이미지가 선명하지 않다.
//그래서 imagepng를 써준다.
imagepng($im,"aa.png");
// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
자세한 내용은 아래의 링크 참조
https://opentutorials.org/module/6/5137
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
// 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,"aa.png");
//png 파일을 imagejpeg 하면 이미지가 선명하지 않다.
//그래서 imagepng를 써준다.
imagepng($im,"aa.png");
// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
자세한 내용은 아래의 링크 참조
https://opentutorials.org/module/6/5137