<?php
//制造水印
header ("Content-type:image/jpeg");
$arr = imagecreatefromjpeg('2.jpg');
$src = imagecreatefromjpeg('1.jpg');
//创建画布
$back = imagecreatetruecolor(610,1140);
imagecopyresampled($arr,$arr,10,10,100,200,100,100,100,100);
imagejpeg($arr);
imagedestroy($src);
imagedestroy($arr);
?>
PHP水印制作

相关文章:

  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2021-04-28
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-26
  • 2021-12-22
  • 2021-06-21
  • 2021-12-09
  • 2021-05-23
  • 2021-08-30
相关资源
相似解决方案