Home  >  Article  >  Backend Development  >  通过gd库为图片添加透明水印_PHP教程

通过gd库为图片添加透明水印_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:32:501176browse

请查看源文件
注:需GD 2.0以上才能有透明效果
(做为现在的主流开发语言)
header ("Content-type: image/png");
$logoImage = ImageCreateFromPNG(test.png);
$photoImage = ImageCreateFromJpeg(back.jpg);
ImageAlphaBlending($photoImage, true);
$logoW = ImageSX($logoImage);
$logoH = ImageSY($logoImage);
ImageCopy($photoImage, $logoImage, 0, 0, 0, 0, $logoW, $logoH);
ImageJPEG($photoImage); // output to browser
ImageDestroy($photoImage);
ImageDestroy($logoImage);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508661.htmlTechArticle请查看源文件 注:需GD 2.0以上才能有透明效果 ?php (做为现在的主流开发语言) header ("Content-type: image/png"); logoImage = ImageCreateFromPNG(test.png);...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn