-
php图片增加中文与图片水印代码
$ico_pic 是你要给图片加水印的水印图片,其它的参数都有详细的说明,如果你正在找这类代码可以下载保存成php文件,再利用后面说的调用方法来调用生成水印图片类代码.
php图片增加中文与图片水印代码如下:
- <?php
- class smallpic{
- private $src_pic;//原图
- private $ico_pic = "003.png";//水印图
- private $ico_text = "水印";//水印文字
- private $small_width;//缩略图宽度
- private $small_height;//缩略图高度
- private $is_ico_pic = true;//是否加图片水印
- private $is_text = true;//是否加文字水印
- private $src_x = 20;//水印在原图的x坐标
- private $src_y = 20;//水印在原图的y坐标
- private $ut = "utf-8";//文字编码
- private $font_color = "#990000";//文字水印颜色
- private $samll_pic_name = "smallpic";//小图的名称
- private $big_pic_name = "bigpic";//大图的名称
- function __construct($src_pic,$small_width,$small_height){
- $this->checkfile($src_pic);
- $this->checkfile($this->ico_pic);
- $this->src_pic = $src_pic;
- $this->small_width = $small_width;
- $this->small_height = $small_height;
- }
- private function __get($property_name){
- return $this->$property_name;
- }
- private function __set($property_name,$value){
- return $this->$property_name = $value;
- }
- /**
- * 取得图片的一些基本信息,类型为array
- */
- function getimageinfo($image){
- return @getimagesize($image);
- }
- /**
- * 把图片加载到php中
- * $image 传进来的图片
- */
- function getimage($image){
- $image_info = $this->getimageinfo($image);
- switch($image_info[2]){
- case 1:
- $img = @imagecreatefromgif($image);
- break;
- case 2:
- $img = @imagecreatefromjpeg($image);
- break;
- case 3:
- $img = @imagecreatefrompng($image);
- break;
- }
- return $img;
- }
- function createimageforsuffix($big_pic,$new_pic){
- $image_info = $this->getimageinfo($this->src_pic);
- switch($image_info[2]){
- case 1:
- //输出大图
- @imagegif($big_pic,$this->big_pic_name.".gif");
- //输出小图
- @imagegif($new_pic,$this->samll_pic_name.".gif");
- break;
- case 2:
- //输出大图
- @imagejpeg($big_pic,$this->big_pic_name.".jpg");
- //输出小图
- @imagejpeg($new_pic,$this->samll_pic_name.".jpg");
- break;
- case 3:
- //输出大图
- @imagepng($big_pic,$this->big_pic_name.".png");
- //输出小图
- @imagepng($new_pic,$this->samll_pic_name.".png");
- break;
- }
- }
- function checkfile($file){
- if(!file_exists($file)){
- die("图片:".$file."不存在!");
- }
- }
- function createsmallimage(){
- $big_pic = $this->getimage($this->src_pic);
- $big_pic_info = $this->getimageinfo($this->src_pic);
- $new_pic = $this->getimage($this->ico_pic);
- $new_pic_info = $this->getimageinfo($this->ico_pic);
- $rgb = $this->convcolor();
- //判断是按宽比例缩放还是按高比例缩放
- if($big_pic_info[0] > $big_pic_info[1]){
- $ratio = $this->small_width/(int)$big_pic_info[0];
- $small_pic_width = $this->small_width;
- $small_pic_height = (int)($big_pic_info[1]*$ratio);
- }else{
- $ratio = $this->small_height/(int)$big_pic_info[1];
- $small_pic_height = $this->small_height;
- $small_pic_width = (int)($big_pic_info[0]*$ratio);
- }
- //echo $small_pic_width = (int)($big_pic_info[0]*$ratio);
- //echo $small_pic_height = (int)($big_pic_info[1]*$ratio);
- //是否打图片水印
- if ($this->is_ico_pic){
- //打图片水印
- @imagecopy($big_pic,$new_pic,$this->src_x,$this->src_y,0,0,$new_pic_info[0],$new_pic_info[1]);
- }
- //是否打文字水印
- if ($this->is_text){
- //设置文字颜色
- $text_color = @imagecolorallocate($big_pic,$rgb[0],$rgb[1],$rgb[2]);
- //转换文字编码
- $text = @iconv($this->ut,"utf-8",$this->ico_text);
- //打文字水印
- @imagettftext($big_pic,12,0,$this->src_x,$this->src_y,$text_color,"simkai_0.ttf",$text);
- }
- //新建一个新图片的画板
- $new_pic = @imagecreatetruecolor($small_pic_width,$small_pic_height);
- //生成缩略图
- @imagecopyresized($new_pic,$big_pic,0,0,0,0,$small_pic_width,$small_pic_height,$big_pic_info[0],$big_pic_info[1]);
- //输出图
- $this->createimageforsuffix($big_pic,$new_pic);
- }
- /**
- * 类内部的功能函数把#000000转换成255,255,255
- */
- private function convcolor(){
- $rgb = array();
- $color = preg_replace("/#/","",$this->font_color);
- $c = hexdec($color);
- $r = ($c >> 16) & 0xff;
- $g = ($c >> 8) & 0xff;
- $b = $c & 0xff;
- $rgb[0] = $r;
- $rgb[1] = $g;
- $rgb[2] = $b;
- return $rgb;
- }
- }
- //调用方法
- $pic = new smallpic("002.jpg",600,300);
- $pic->is_text = true;
- $pic->is_ico_pic = true;
- $pic->ico_pic = "./images/004.png";
- $pic->ico_text = "新年快乐!";
- //$pic->src_x = 80;
- $pic->src_y = 80;
- $pic->ut = "utf-8";
- $pic->font_color = "#0521f8";
- $pic->samll_pic_name = "hslsamll";
- $pic->big_pic_name = "hslbig";
- $pic->createsmallimage();
- //开源代码phpfensi.com
- ?>
原文链接:http://www.phpfensi.com/php/20140819/4450.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式