最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php使用imagick给图片加水印的方法
时间:2022-06-24 15:10:39 编辑:袖梨 来源:一聚教程网
$image = new Imagick();
$image->readImage("original.jpg");
$watermark = new Imagick();
$watermark->readImage("/data/mark.png");
// how big are the images?
$iWidth = $image->getImageWidth();
$iHeight = $image->getImageHeight();
$wWidth = $watermark->getImageWidth();
$wHeight = $watermark->getImageHeight();
if ($iHeight < $wHeight || $iWidth < $wWidth) {
// resize the watermark
$watermark->scaleImage($iWidth, $iHeight);
// get new size
$wWidth = $watermark->getImageWidth();
$wHeight = $watermark->getImageHeight();
}
// calculate the position
$x = ($iWidth – $wWidth);
$y = ($iHeight – $wHeight);
$image->compositeImage($watermark, imagick::COMPOSITE_OVER, $x, $y);
header("Content-Type: image/" . $image->getImageFormat());
echo $image;
?>
相关文章
- 十大耐玩的割草手机游戏有哪几个 高人气的割草手游排行榜2026 03-22
- 嘀哩嘀哩无名小站怎么看-嘀哩嘀哩dilidili高清入口速递 03-22
- 磁力狗最新版本官方下载入口-磁力狗引擎极速下载链接 03-22
- 秘闻副本等级要求一览(探索秘闻副本,享受游戏乐趣) 03-22
- 阿里云企业邮箱官方入口在哪找-阿里云企业邮箱官网入口 03-22
- 真武试炼关羽技能搭配攻略(解析关羽技能,打造最强输出) 03-22