PHP基于GD库的图像处理方法小结


Posted in PHP onSeptember 27, 2016

本文实例讲述了PHP基于GD库的图像处理方法。分享给大家供大家参考,具体如下:

gd图像处理技术

extension=php_gd2.dll

创建画布

画布,一种资源型数据,可操作的图像资源

创建画布(新建)

imageCreate(width,height) //创建基于调色板的画布

imageCreateTrueColor(width,height) //创建真彩色的画布

基于图片创建画布(打开)

imageCreateFromJPEG( url)
imageCreateFromPNG(url)
imageCreateFromGIF(url)

操作画布

分配颜色:如果需要在画布上使用某种颜色,应该先将颜色分配到画布上。

(颜色标识 )= imageColorAllocate(img,r,g,b)

填充画布

imageFill(img,x,y,颜色标识)

输出画布

1. 输出到图片文件

2. 直接输出,需要告知浏览器输出为图片信息(header("Content-type:image/png;")

imagePNG(img[,url])
imageJPEG()
imageGIF()

销毁画布资源

imageDestroy(img)

<?php
header('content-type:image/png');
$img = imagecreate(300,300);
$color = imagecolorallocate($img,223,22,44);
imagefill($img,3,3,$color);
imagepng($img);
imagedestroy();
?>

运行效果图如下:

PHP基于GD库的图像处理方法小结

验证码实现

<?php
  header('content-type:image/png');
  $code = '123456789abcdefghijklmnpqrstuvwxvz';
  $length = strlen($code);
  $print = '';
  for($i=0; $i<4; $i++){
    $print.=$code[mt_rand(0,$length-1)];
  }
//  echo $print;
  $img = imagecreatefrompng('./str.png');
  $color = mt_rand(0,1)==1?imagecolorallocate($img,0,0,0):imagecolorallocate($img,255,255,255);
  //图片大小
  $img_width = imagesx($img);
  $img_height = imagesy($img);
  //字体大小
  $font = 5;
  $font_width = imagefontwidth($font);
  $font_height = imagefontheight($font);
  $fin_w = ($img_width-$font_width*4)/2;
  $fin_h = ($img_height-$font_height)/2;
  imagestring($img,$font,$fin_w,$fin_h,$print,$color);
  imagepng($img);
  imagedestroy($img);
?>
<image src="gd_string.php" onclick="this.src='gd_string.php?ra='+Math.random()"></image>

运行效果图如下:

 PHP基于GD库的图像处理方法小结

<?php
session_start();
$im=imagecreatetruecolor(80,30);
$str="";
for ($i=0;$i<4;$i++){
  $str.=dechex(rand(0,15));
}
$_SESSION['code']=$str;
$white=imagecolorallocate($im,255,255,255);
imagestring($im,rand(2,5),rand(0,70),rand(0,10),$str,$white);
//imagettftext($im,rand(0,5),rand(0,180),rand(0,100),rand(0,10),$white,"simhei.ttf",$str);
for($i=0;$i<20;$i++){
$color=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imageline($im,rand(0,90),rand(0,20),rand(0,100),rand(0,100),$color);
}
header("content-type:image/png");
imagepng($im);
imagedestroy($im);
?>

注意:图片输出前后不能有额外输出

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
apache+php+mysql安装配置方法小结
Aug 01 PHP
Php中文件下载功能实现超详细流程分析
Jun 13 PHP
腾讯QQ微博API接口获取微博内容
Oct 30 PHP
PHP内核探索:变量存储与类型使用说明
Jan 30 PHP
php中explode的负数limit用法分析
Feb 27 PHP
PHP单例模式详细介绍
Jul 01 PHP
PHP使用Pthread实现的多线程操作实例
Nov 14 PHP
php 使用curl模拟登录人人(校内)网的简单实例
Jun 06 PHP
php实现给二维数组中所有一维数组添加值的方法
Feb 04 PHP
PHP实现的数组和XML文件相互转换功能示例
Mar 15 PHP
PHP常见字符串操作函数与用法总结
Mar 04 PHP
解决laravel(5.5)访问public报错的问题
Oct 12 PHP
PHP文件上传操作实例详解
Sep 27 #PHP
PHP目录操作实例总结
Sep 27 #PHP
PHP文件操作实例总结
Sep 27 #PHP
PHP命名空间namespace用法实例分析
Sep 27 #PHP
PHP7标量类型declare用法实例分析
Sep 26 #PHP
PHP7新增运算符用法实例分析
Sep 26 #PHP
PHP7匿名类用法分析
Sep 26 #PHP
You might like
Zend的AutoLoad机制介绍
2012/09/27 PHP
深入理解curl类,可用于模拟get,post和curl下载
2013/06/08 PHP
smarty的section嵌套循环用法示例
2016/05/28 PHP
PHP用PDO如何封装简单易用的DB类详解
2017/07/30 PHP
编写Js代码要注意的几条规则
2010/09/10 Javascript
javascript 上下banner替换具体实现
2013/11/14 Javascript
JavaScript中如何使用cookie实现记住密码功能及cookie相关函数介绍
2016/11/10 Javascript
AngularJS实现表单验证功能
2017/01/09 Javascript
微信小程序实现顶部选项卡(swiper)
2020/06/19 Javascript
VueAwesomeSwiper在VUE中的使用以及遇到的一些问题
2018/01/11 Javascript
JavaScript数组去重的方法总结【12种方法,号称史上最全】
2019/02/28 Javascript
JS中的const命令你真懂它吗
2020/03/08 Javascript
[37:23]DOTA2上海特级锦标赛主赛事日 - 3 胜者组第二轮#2Secret VS EG第二局
2016/03/04 DOTA
使用Python编写爬虫的基本模块及框架使用指南
2016/01/20 Python
Django实现自定义404,500页面教程
2017/03/26 Python
requests和lxml实现爬虫的方法
2017/06/11 Python
Python创建对称矩阵的方法示例【基于numpy模块】
2017/10/12 Python
基于python中的TCP及UDP(详解)
2017/11/06 Python
pyinstaller打包多个py文件和去除cmd黑框的方法
2019/06/21 Python
django中forms组件的使用与注意
2019/07/08 Python
Python 旋转打印各种矩形的方法
2019/07/09 Python
python的debug实用工具 pdb详解
2019/07/12 Python
Python3使用xml.dom.minidom和xml.etree模块儿解析xml文件封装函数的方法
2019/09/23 Python
关于Python 常用获取元素 Driver 总结
2019/11/24 Python
Python连接Impala实现步骤解析
2020/08/04 Python
学习Python爬虫的几点建议
2020/08/05 Python
python3 googletrans超时报错问题及翻译工具优化方案 附源码
2020/12/23 Python
Python中对象的比较操作==和is区别详析
2021/02/12 Python
金融系应届毕业生求职信
2014/05/26 职场文书
争做文明公民倡议书
2014/08/29 职场文书
可可西里观后感
2015/06/08 职场文书
运动会报道稿大全
2015/07/23 职场文书
小学生安全教育心得体会
2016/01/15 职场文书
MySQL空间数据存储及函数
2021/09/25 MySQL
php去除deprecated的实例方法
2021/11/17 PHP
微软Win11有哪些隐藏功能? windows11多个功能汇总
2021/11/21 数码科技