php图片加水印原理(超简单的实例代码)


Posted in PHP onJanuary 18, 2013

文字水印:

$w = 80; 
$h = 20; 
$im = imagecreatetruecolor($w,$h); 
$textcolor = imagecolorallocate($im, 123, 12, 255); 
$white = imagecolorallocate($im, 255, 255, 255); 
$grey = imagecolorallocate($im, 128, 128, 128); 
$black = imagecolorallocate($im, 0, 0, 0); 
imagefilledrectangle($im, 0, 0, 399, 29, $grey); //画一矩形并填充 // 把字符串写在图像左上角 
imagestring($im, 3, 2, 3, "Hello world!", $textcolor); 
// 输出图像 
header("Content-type: image/jpeg"); 
imagejpeg($im); 
imagedestroy($im); 
图片水印 
$groundImg = "DSC05940.jpeg"; 
$groundInfo = getimagesize($groundImg); 
$ground_w = $groundInfo[0]; 
//print_r($groundInfo); 
$ground_h = $groundInfo[1]; 
switch($groundInfo[2]){ 
case 1: 
$ground_im = imagecreatefromgif($groundImg); 
break; 
case 2: 
$ground_im = imagecreatefromjpeg($groundImg); 
break; 
case 3: 
$ground_im = imagecreatefrompng($groundImg); 
break; 
} 
$waterImg = "DSC05949.jpeg"; 
$imgInfo =getimagesize($waterImg); 
$water_w = $imgInfo[0]; 
$water_w = $imgInfo[1]; 
switch($imgInfo[2]){ 
case 1: 
$water_im = imagecreatefromgif($waterImg); 
break; 
case 2: 
$water_im = imagecreatefromjpeg($waterImg); 
break; 
case 3: 
$water_im = imagecreatefrompng($waterImg); 
break; 
} 
imagecopy($ground_im,$water_im,100,100,0,0,500,500); 
header("Content-type: image/jpeg"); 
imagejpeg($ground_im);

合并图片php提供了很多函数:例如:imagecopymerge,imagecopyresized
PHP 相关文章推荐
PHP中实现图片的锐化
Oct 09 PHP
使用字符串函数输出整数化的PHP版本号
Oct 09 PHP
php 远程图片保存到本地的函数类
Dec 08 PHP
让ThinkPHP支持大小写url地址访问的方法
Oct 31 PHP
MacOS 安装 PHP的图片裁剪扩展Tclip
Mar 25 PHP
FastCGI 进程意外退出造成500错误
Jul 26 PHP
php 输入输出流详解及示例代码
Aug 25 PHP
php通过会话控制实现身份验证实例
Oct 18 PHP
ThinkPHP中调用PHPExcel的实现代码
Apr 08 PHP
PHP通过bypass disable functions执行系统命令的方法汇总
May 02 PHP
YII框架http缓存操作示例
Apr 29 PHP
WordPress伪静态规则设置代码实例
Dec 10 PHP
php加水印的代码(支持半透明透明打水印,支持png透明背景)
Jan 17 #PHP
在windows服务器开启php的gd库phpinfo中未发现
Jan 13 #PHP
mysqli_set_charset和SET NAMES使用抉择及优劣分析
Jan 13 #PHP
PHP读取xml方法介绍
Jan 12 #PHP
用PHP编写和读取XML的几种方式
Jan 12 #PHP
php图片的裁剪与缩放生成符合需求的缩略图
Jan 11 #PHP
浏览器预览PHP文件时顶部出现空白影响布局分析原因及解决办法
Jan 11 #PHP
You might like
教你如何把一篇文章按要求分段
2006/10/09 PHP
PHP开发不能违背的安全规则 过滤用户输入
2011/05/01 PHP
win7+apache+php+mysql环境配置操作详解
2013/06/10 PHP
windows平台中配置nginx+php环境
2015/12/06 PHP
phpfpm的作用和用法
2019/10/10 PHP
限制文本字节数js代码
2007/03/06 Javascript
jquery实现鼠标拖动图片效果示例代码
2014/01/09 Javascript
ExtJS 刷新后如何默认选中刷新前最后一次选中的节点
2014/04/03 Javascript
用js设置下拉框为只读的小技巧
2014/04/10 Javascript
js操作iframe父子窗体示例
2014/05/22 Javascript
jquery中 $.expr使用实例介绍
2014/06/09 Javascript
IE浏览器IFrame对象内存不释放问题解决方法
2014/08/22 Javascript
Nodejs实现批量下载妹纸图
2015/05/28 NodeJs
jQuery实现可移动选项的左右下拉列表示例
2016/12/26 Javascript
javascript自定义日期比较函数用法示例
2019/07/22 Javascript
JS如何寻找数组中心索引过程解析
2020/06/01 Javascript
Vue-cli打包后部署到子目录下的路径问题说明
2020/09/02 Javascript
Python实现比较两个文件夹中代码变化的方法
2015/07/10 Python
Python基础之文件读取的讲解
2019/02/16 Python
搞定这套Python爬虫面试题(面试会so easy)
2019/04/03 Python
PyQt5 实现字体大小自适应分辨率的方法
2019/06/18 Python
python程序运行进程、使用时间、剩余时间显示功能的实现代码
2019/07/11 Python
Python 操作 PostgreSQL 数据库示例【连接、增删改查等】
2020/04/21 Python
Python logging模块handlers用法详解
2020/08/14 Python
python 实现端口扫描工具
2020/12/18 Python
图解CSS3制作圆环形进度条的实例教程
2016/05/26 HTML / CSS
HTML5实现晶莹剔透的雨滴特效
2014/05/14 HTML / CSS
HTML5图片预览实例分享
2014/06/04 HTML / CSS
公安交警个人对照检查材料思想汇报
2014/10/01 职场文书
群众路线表态发言材料
2014/10/17 职场文书
2014年安全工作总结范文
2014/11/13 职场文书
有关西游记的读书笔记
2015/06/25 职场文书
新闻简讯格式及范文
2015/07/22 职场文书
导游词之丹东鸭绿江
2019/10/24 职场文书
JMeter对MySQL数据库进行压力测试的实现步骤
2022/01/22 MySQL
Golang map映射的用法
2022/04/22 Golang