PHP利用GD库处理图片方法实现
这里写的是完成每个功能的函数,可以复制单个函数直接使用,这里的每个函数都是另外一篇PHP常用类------图片处理类Image当中的方法进行细化,可以参考一下
废话不多说,直接付代码吧!
添加水印(文字和图片)
<?php
/**
* [创建图片文字水印]
* @param [string] $imagename [需要添加水印的值]
* @param [string] $string [图片上添加的文字]
* @param [string] $locate [水印位置,center,left_buttom,right_buttom三选一]
* @return [null] [description]
*/
function create_words_watermark($imagename,$string,$locate){
list($width,$height,$type)=getimagesize($imagename);
$types=array(1 => "GIF",2 => "JPEG",3 => "PNG",
4 => "SWF",5 => "PSD",6 => "BMP",
7 => "TIFF",8 => "TIFF",9 => "JPC",
10 => "JP2",11 => "JPX",12 => "JB2",
13 => "SWC",14 => "IFF",15 => "WBMP",16 => "XBM");
$type=strtolower($types[$type]);
$create="imagecreatefrom".$type;
$img=$create($imagename); $string_color=imagecolorallocate($img,200, 200, 200);
$fontsize=4; // 图片的宽和高也可用下面两个函数获得
// $width=imagesx($img);
// $height=imagesy($img); switch($locate){
case 'center':
$x=($width-imagefontwidth($fontsize)*strlen($string))/2;
$y=($height-imagefontheight($fontsize))/2;
break;
case 'left_buttom':
$x=5;
$y=($height-imagefontheight($fontsize)-3);
break;
case 'right_buttom':
$x=($width-imagefontwidth($fontsize)*strlen($string)-3);
$y=($height-imagefontheight($fontsize)-3);
break;
default:
die("未指定水印位置!");
break;
} imagestring($img,$fontsize,$x,$y,$string,$string_color);
imagestring($img,$fontsize,$x+1,$y+1,$string,$string_color); $save="image".$type;
//保存
//$save($img,"new_".$imagename); //显示
header("content-type:image/".$type);
$save($img);
imagedestroy($img);
} // create_words_watermark("test.png","hello world","right_buttom"); /**
* [create_pic_watermark 添加图片水印]
* @param [string] $dest_image [需要添加图片水印的图片名]
* @param [string] $watermark [水印图片名]
* @param [string] $locate [水印位置,center,left_buttom,right_buttom三选一]
* @return [type] [description]
*/
function create_pic_watermark($dest_image,$watermark,$locate){
list($dwidth,$dheight,$dtype)=getimagesize($dest_image);
list($wwidth,$wheight,$wtype)=getimagesize($watermark); $types=array(1 => "GIF",2 => "JPEG",3 => "PNG",
4 => "SWF",5 => "PSD",6 => "BMP",
7 => "TIFF",8 => "TIFF",9 => "JPC",
10 => "JP2",11 => "JPX",12 => "JB2",
13 => "SWC",14 => "IFF",15 => "WBMP",16 => "XBM"); $dtype=strtolower($types[$dtype]);//原图类型
$wtype=strtolower($types[$wtype]);//水印图片类型 $created="imagecreatefrom".$dtype;
$createw="imagecreatefrom".$wtype; $imgd=$created($dest_image);
$imgw=$createw($watermark); switch($locate){
case 'center':
$x=($dwidth-$wwidth)/2;
$y=($dheight-$wheight)/2;
break;
case 'left_buttom':
$x=1;
$y=($dheight-$wheight-2);
break;
case 'right_buttom':
$x=($dwidth-$wwidth-1);
$y=($dheight-$wheight-2);
break;
default:
die("未指定水印位置!");
break;
} imagecopy($imgd,$imgw,$x,$y,0,0, $wwidth,$wheight); $save="image".$dtype; //显示
header("content-type:image/".$dtype);
$save($imgd); imagedestroy($imgw);
imagedestroy($imgd);
} create_pic_watermark("ganlixin.jpg","test.png","left_buttom");
?>
剪切图片
<?php
/**
* [cut_image] 从原图中剪切一部分
* @param [string] $old_imagename [需要剪切的图片名]
* @param [int] $start_width [从原图片宽为的$start_width开始剪切]
* @param [int] $start_height [从原图片高为的$start_height开始剪切]
* @param [int] $new_width [从原图片中剪切$new_width的宽度]
* @param [int] $new_height [从原图片中剪切$new_height的高度]
* @return [null] [null]
*/
function cut_image($old_imagename,$start_width,$start_height,$new_width,$new_height){
list($old_width,$old_height,$type)=getimagesize($old_imagename);
$types=array(1 => "GIF",2 => "JPEG",3 => "PNG",
4 => "SWF",5 => "PSD",6 => "BMP",
7 => "TIFF",8 => "TIFF",9 => "JPC",
10 => "JP2",11 => "JPX",12 => "JB2",
13 => "SWC",14 => "IFF",15 => "WBMP",16 => "XBM");
$type=strtolower($types[$type]);
$create="imagecreatefrom".$type; $old_img=$create($old_imagename);
$new_img=imagecreatetruecolor($new_width, $new_height); imagecopyresampled($new_img,$old_img,0,0,$start_width,$start_height,$new_width,$new_height,$new_width,$new_height);
$save="image".$type; //保存
//$save($new_img,"new_".$old_imagename); //显示
header("content-type:image/".$type);
$save($new_img); //销毁
imagedestroy($old_img);
imagedestroy($new_img);
} cut_image("ganlixin.jpg",0,0,200,200);
?>
翻转图片
<?php
/**
* [rotate_image 图片旋转]
* @param [string] $imagename [要进行旋转的图片名]
* @param [string] $angle [旋转的角度,逆时针为正]
* @return [null] [description]
*/
function rotate_image($imagename,$angle){
list($width,$height,$type)=getimagesize($imagename);
$types=array(1 => "GIF",2 => "JPEG",3 => "PNG",
4 => "SWF",5 => "PSD",6 => "BMP",
7 => "TIFF",8 => "TIFF",9 => "JPC",
10 => "JP2",11 => "JPX",12 => "JB2",
13 => "SWC",14 => "IFF",15 => "WBMP",16 => "XBM");
$type=$types[$type]; $create="imagecreatefrom".$type;
$img=$create($imagename);
$new_img=imagerotate($img,$angle,0);
$save="image".$type; //显示
header("content-type:image/".$type);
$save($new_img); // 保存
// $save($new_img,"new_".$imagename); imagedestroy($img);
imagedestroy($new_img);
} rotate_image("ganlixin.jpg",-90); ?>
翻转图片
<?php
/**
* [overturn_image 翻转图片]
* @param [string] $imagename [要反转的图片名]
* @param [char] $method [按x轴或y轴翻转,只有x,y选项]
* @return [type] [description]
*/
function overturn_image($imagename,$method){
$method=strtolower($method);
list($width,$height,$type)=getimagesize($imagename);
$types=array(1 => "GIF",2 => "JPEG",3 => "PNG",
4 => "SWF",5 => "PSD",6 => "BMP",
7 => "TIFF",8 => "TIFF",9 => "JPC",
10 => "JP2",11 => "JPX",12 => "JB2",
13 => "SWC",14 => "IFF",15 => "WBMP",16 => "XBM");
$type=$types[$type]; $create="imagecreatefrom".$type;
$img=$create($imagename);//源图片
$new_img=imagecreatetruecolor($width,$height);//翻转之后的图片 if($method=='y'){
for($i=0;$i<$width;$i++){
imagecopy($new_img,$img,$width-$i-1,0,$i,0,1,$height);
}
} else if($method=='x'){
for($i=0;$i<$height;$i++){
imagecopy($new_img,$img,0,$height-$i-1,0,$i,$width,1);
}
}
$save="image".$type; //显示
header("content-type:image/".$type);
$save($new_img); // 保存
// $save($new_img,"new_".$imagename); imagedestroy($img);
imagedestroy($new_img);
}
overturn_image("ganlixin.jpg","y");
?>
PHP利用GD库处理图片方法实现的更多相关文章
- Windows环境下php开启GD库的方法
一.GD库是什么? GD库是php处理图形的扩展库,GD库提供了一系列用来处理图片的API,使用GD库可以处理图片,或者生成图片,也可以给图片加水印.在网站上GD库通常用来生成缩略图,或者用来对图片加 ...
- php学习笔记:利用gd库生成图片,并实现随机验证码
说明:一些基本的代码我都进行了注释,这里实现的验证码位数.需要用的字符串都可以再设置.有我的注释,大家应该很容易能看得懂. 基本思路: 1.用mt_rand()随机生成数字确定需要获取的字符串,对字符 ...
- GD库imagecopyresampled()方法详解~
整理了一下GD库这个缩放,拉伸复制的方法 因为这个函数参数太多了~ imagecopyresampled() /* //拷贝部分图像并调整大小 bool imagecopyresampled ( ...
- PHP利用GD库绘图和生成验证码图片
首先得确定php.ini设置有没有打开GD扩展功能,測试例如以下 print_r(gd_info()); 假设有打印出内容例如以下,则说明GD功能有打开: Array ( [GD Version] = ...
- PHP学习笔记:利用gd库给图片打图片水印
<?php $dst_path = '1.jpg';//目标图片 $src_path = 'logo1.png';//水印图片 //创建图片的实例 $dst = imagecreatefroms ...
- thinkphp 利用GD库在图片上写文字
<?php /** * Created by PhpStorm. * User: Administrator */ namespace Home\Event; use \Think\Image; ...
- PHP利用GD库画曲线
效果: PHP代码 <?php Header('Content-type: image/png;Charset:utf-8'); //声明图片 $im = imagecreate(400,200 ...
- php 利用Gd库添加文字水印乱码的问题及解决方案
最近一个项目进行了服务器迁移,部署后发现 ,其中一个为图片添加水印文字的功能出现了乱码问题,确认功能代码不存在问题,同时项目代码都是使用UTF-8编码,不存在编码问题,也检查排除了字体文件出现问题的可 ...
- php 简单的学习GD库绘制图片并传回给前端实现方式
1.基本的GD库绘制图片汇总 2.后台实现小案例 <?php // $img = imagecreatetruecolor(200,40); // var_dump($img); // 利用GD ...
随机推荐
- C# X509Certificate类 调用证书
一.命名空间 using System.Security.Cryptography.X509Certificates; 二.调用代码 string certPath = Server.MapPath( ...
- 「PKUWC2018」随机游走
题目 我暴力过啦 看到这样的东西我们先搬出来\(min-max\)容斥 我们设\(max(S)\)表示\(x\)到达点集\(S\)的期望最晚时间,也就是我们要求的答案了 显然我们也很难求出这个东西,但 ...
- pek (北大oj)3070
思路:矩阵快速幂, 二分加速 #include<cstdio> #include<cstring> #define ll long long #define mod 10000 ...
- sql截取日期/时间的单独部分,比如年、月、日、小时、分钟等等
可以使用EXTRACT() 函数.(oracle和mysql都有该函数) 语法: EXTRACT(unit FROM date) date 参数是合法的日期表达式.unit 参数可以是下列的值:YEA ...
- 【Codeforces Gym 100725K】Key Insertion
Codeforces Gym 100725K 题意:给定一个初始全0的序列,然后给\(n\)个查询,每一次调用\(Insert(L_i,i)\),其中\(Insert(L,K)\)表示在第L位插入K, ...
- Omi框架学习之旅 - 插件机制之omi-touch 及原理说明
这个插件也能做好多好多的事,比如上拉下拉加载数据,轮播,等一切和运动有关的特效. 具体看我的allowTouch这篇博客,掌握了其用法,在来看它是怎么和omi结合的.就会很简单. 当然使用起来也比较方 ...
- sql实时提交事务
public void deleteByHbtlidAndDept(String class_id,String depart_id) { Session session = this.getHibe ...
- ASP.NET Core MVC中Controller的Action,默认既支持HttpGet,又支持HttpPost
我们知道ASP.NET Core MVC中Controller的Action上可以声明HttpGet和HttpPost特性标签,来限制可以访问Action的Http请求类型(GET.POST等). 那 ...
- Maven学习笔记-03-Eclipse和Maven集成
本文使用 Eclipse 集成 Maven,并创一个基于 maven的web工程 一 环境版本信息 本文使用的版本信息如下: Eclipse Version: Mars.1 Release (4.5. ...
- HNOI2015做题笔记
HNOI2015 亚瑟王(概率DP) 根据期望的线性性,我们只需要算出每一种卡牌触发的概率就可以算出期望的值 考虑与第\(i\)张卡牌触发概率相关的量,除了\(p_i\)还有前\(i-1\)张卡牌中触 ...