php使用imagick给图片加水印的方法
发布:smiling 来源: PHP粉丝网 添加日期:2018-06-11 10:25:11 浏览: 评论:0
- <?php
- $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);
- //phpfensi.com
- $image->compositeImage($watermark, imagick::COMPOSITE_OVER, $x, $y);
- header("Content-Type: image/" . $image->getImageFormat());
- echo $image;
- ?>
Tags: 水印 方法 图片
相关文章
- ·fck上传图片增加水印代码修改(2014-09-09)
- ·关于php 静态变量与静态方法(2014-01-17)
- ·php中的魔术方法一些学习笔记(2014-02-18)
- ·PHP中JSON的应用方法(2014-05-19)
- ·PHP 常量 dirname(__file__)获取路径方法(2014-05-20)
- ·PHP static 静态变量和属性方法使用说明(2014-07-15)
- ·PHP5中哈希创建和验证方法详解(2014-08-22)
- ·PHP DDos的几个防御方法详解(2014-08-22)
- ·PHP错误处理方法总结(2014-08-28)
- ·php页面缓存实现方法总结(2014-08-28)
- ·php中异常处理方法总结(2014-08-28)
- ·跨服务器保存iis日志方法(2014-09-09)
- ·php fsockopen 伪造 post和get方法(2014-09-09)
- ·php PDO 使用方法详解(2014-09-10)
- ·php有道翻译api调用方法(2014-09-22)
- ·SAE的storage服务使用方法(2015-04-06)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)