Home  >  Article  >  Backend Development  >  【PHP】透明水印生成

【PHP】透明水印生成

WBOY
WBOYOriginal
2016-07-25 09:02:251146browse
【PHP】透明水印生成
  1. /*
  2. * Created on 2010-10-27
  3. * BY QQ542900563
  4. * Copyrights Reserved 2000-2020
  5. * 本例演示图片水印的生成办法
  6. */
  7. //分别载入两张图片
  8. $im=imagecreatefromjpeg("liu.jpg");
  9. $img2=imagecreatefrompng("m.png");
  10. //取得各自的长宽,计算位置
  11. $im_WH=getimagesize("liu.jpg");
  12. $im_W=$im_WH[0];
  13. $im_H=$im_WH[1];
  14. $img2_WH=getimagesize("m.png");
  15. $img2_W=$img2_WH[0];
  16. $img2_H=$img2_WH[1];
  17. //定义存放的位置
  18. $NewX=$im_W-$img2_W;
  19. $NewY=$im_H-$img2_H;
  20. //填充
  21. imagecopy($im,$img2,$NewX,$NewY,0,0,$img2_W,$img2_H);
  22. header("Content-type:image/jpeg");
  23. imagejpeg($im);
  24. ?>
复制代码


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