search
Homephp教程php手册PHP第十课 PHP图像处理函数以及验证码实现
PHP第十课 PHP图像处理函数以及验证码实现Jun 06, 2016 pm 07:55 PM
phpfunctionlikeImage Processingaccomplishverify

如果你喜欢本博客,请访问本博客地址:http://blog.csdn.net/junzaivip 概要: gd库画图: 数学函数 PHP图片处理函数 图片处理函数使用场景 1.验证码 2.缩放 3.裁剪 4.水印 gd库画图: 1.准备画布 2.准备涂料 3.画画 4.输出图片 5.保存图片 6.关闭画布 ?php //准

如果你喜欢本博客,请访问本博客地址:http://blog.csdn.net/junzaivip


概要:

gd库画图:

数学函数

PHP图片处理函数

图片处理函数使用场景

1.验证码
2.缩放
3.裁剪
4.水印




gd库画图:


1.准备画布
2.准备涂料
3.画画
4.输出图片
5.保存图片
6.关闭画布


<?php //准备画布

	$im = imagecreatetruecolor(500, 300);

	//准备涂料
	$black = imagecolorallocate($im, 0, 0, 0);

	$white = imagecolorallocate($im, 255, 255, 255);

	//背景填充成黑色
	imagefill($im,0,0, $black);

	//画一个矩形,填充成白色
	imagefilledellipse($im, 258, 151, 200, 200, $white);
	//输出到浏览器或保存起来
	header("content-type:image/png");
	//输出图片
	imagepng($im);

	//关闭画布
	imagedestroy($im);
?>


PHP图片处理函数
1.数学函数
2.图片处理函数




数学函数:
1.max();
2.min();
3.mt_rand();随机取一个数字
<?php echo	mt_rand(1,5);
?>

mt_rand随机取一个值
<?php //随机从一个数组中取一个值
$arr = array("a","b","c","d","e");

$rkey = mt_rand(0,count($arr)-1);

echo $arr[$rkey];
?>


4.ceil();天花板 
5.floor();
6.round();四舍五入
<?php echo ceil(2.4);//3
	echo floor(2.4);//2
	echo round(2.4);//2
	echo round(2.6);//3

?>



6.pi(); //π 取圆周率

<?php &#160;
echo(pi());


echo M_PI;
?>


图片处理函数使用场景

1.验证码
2.缩放
3.裁剪
4.水印

PHP中穿件图像的五个步骤
1.准备画布
2.准备涂料
3.在画布上画图像或者文字
4.输出最终图像或曹村最终图像
5.释放画布资源

<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字
//如果不填充背景,默认是黑色
imageellipse($im,258,151,200,200,$white);


//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

绘制图像:
imagefill();
imagesetpixel();//画像素点
imageline();//画线
imagerectangle();//画一个矩形
imagepolygon();//画一个多边形
imageellipse();//画一个椭圆
imageare();画一个圆弧
imagechar();//水平的画一个字符
imagestring();//水平的画一行字符串


//画线
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字
//如果不填充背景,默认是黑色
imageline($im,0,0,500,300,$white);
imageline($im,0,300,500,0,$white);
imageline($im,0,150,500,150,$white);
imageline($im,250,0,250,300,$white);


//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

//添加干扰素
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字
//产生随机的点
for ($i=0; $i < 1000; $i++) { 

imagesetpixel($im,mt_rand(0,500),mt_rand(0,300),$white);

}
//产生随机的线

for ($j=0; $j < 100; $j++) { 
	imageline($im, mt_rand(0,500), mt_rand(0,300), mt_rand(0,500), mt_rand(0,300), $white);
}//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>



//画矩形:
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);


//3.在画布上画图像或者文字
imagerectangle($im, 20, 20, 480, 280, $white);//
imagefilledrectangle($im, 20, 20, 480, 280, $white);//填充






//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

//imagepolygon 画多边形_画三角形
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字
$arr = array(
	250,20,
	60,240,
	440,240
	);
imagepolygon($im, $arr, 3, $white);


//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

画一个3D饼状图
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$red = imagecolorallocate($im, 255, 0, 0);
$grayred = imagecolorallocate($im, 255, 100, 100);
$green = imagecolorallocate($im, 0, 255, 0);
$blue = imagecolorallocate($im, 0, 0, 255);
$gray = imagecolorallocate($im, 200, 200, 200);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字
for ($i=0; $i < 10; $i++) { 
	imagefilledarc($im, 250, 150+$i, 200, 200, 0, 70, $gray,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150+$i, 200, 200, 70, 190, $grayred,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150+$i, 200, 200, 190, 270, $green,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150+$i, 200, 200, 270, 360, $blue,IMG_ARC_PIE);

}
	imagefilledarc($im, 250, 150, 200, 200, 0, 70, $white,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150, 200, 200, 70, 190, $red,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150, 200, 200, 190, 270, $green,IMG_ARC_PIE);
	imagefilledarc($im, 250, 150, 200, 200, 270, 360, $blue,IMG_ARC_PIE);

//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>




//写文字:
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$red = imagecolorallocate($im, 255, 0, 0);
$grayred = imagecolorallocate($im, 255, 100, 100);
$green = imagecolorallocate($im, 0, 255, 0);
$blue = imagecolorallocate($im, 0, 0, 255);
$gray = imagecolorallocate($im, 200, 200, 200);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字

$str= "PHP is very much";

imagestring($im, 5, 260, 160, $str, $green);
//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

//写单个字符:
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$red = imagecolorallocate($im, 255, 0, 0);
$grayred = imagecolorallocate($im, 255, 100, 100);
$green = imagecolorallocate($im, 0, 255, 0);
$blue = imagecolorallocate($im, 0, 0, 255);
$gray = imagecolorallocate($im, 200, 200, 200);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字

$str= "P";

imagechar($im, 5, 260, 160, $str, $green);
//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

//在图片上面写字
<?php //1.准备画布
$im = imagecreatetruecolor(500,300);
//2.准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$red = imagecolorallocate($im, 255, 0, 0);
$grayred = imagecolorallocate($im, 255, 100, 100);
$green = imagecolorallocate($im, 0, 255, 0);
$blue = imagecolorallocate($im, 0, 0, 255);
$gray = imagecolorallocate($im, 200, 200, 200);
$white = imagecolorallocate($im, 255, 255, 255);

//3.在画布上画图像或者文字

$str= "junzaivip";
$file = "E:/PHP/fonts/SIMYOU.TTF";
// $file = "fonts/SIMYOU.TTF";

imagettftext($im, 50, 0, 100, 200, $green, $file, $str);

//4.输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//5.释放画布资源
imagedestroy($im);
?>

PHP 验证码的设计
<?php //准备画布
$im = imagecreatetruecolor(100,50);
//准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$gray = imagecolorallocate($im, 200, 200, 200);

//填充背景
imagefill($im, 0, 0, $gray);

//文字坐标
$x = (100-4*20)/2 + 6;
$y = (50-20)/2 + 20;

//在画布上画图像或者文字

//把三个数组联系起来
$strarr = array_merge(range(1, 9),range(a, z),range(A, Z));

//打乱数组
shuffle($strarr);

//array_slice:取数组的前几位
//Join 将数组变成字符串,并且以第一个变量做分隔符
$str = join(&#39;&#39;,array_slice($strarr, 0,4));

$file = "E:/PHP/fonts/msyh.ttf";
// $file = "fonts/msyh.ttf";

imagettftext($im, 20, 0, $x, $y, $black, $file, $str);

//输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//释放画布资源
imagedestroy($im);
?>

php验证码设计:这里涉及到两个页面:index.php & reg.php
说明:


这个验证码版本只实现了验证图片的动态获取
前台注册页面的验证码和生成图片的验证码进行比较
验证码是由数字 小写字母 大写字母 随机组成


index.php//实现用户的注册

	<title>reg</title>
	<style type="text/css">
	table{

		border-collapse: collapse;

	}

	</style>


<h2 id="用户注册页面">用户注册页面</h2>
<hr>
姓   名:
密   码:
验证码: PHP第十课 PHP图像处理函数以及验证码实现

reg.php//用来验证验证码是否正确
<?php session_start();
	// echo $_POST[&#39;username&#39;];
	// echo $_POST[&#39;password&#39;];
	$code = strtolower($_POST[&#39;vcode&#39;]);

	// echo $code;

	// echo "<pre class="brush:php;toolbar:false">";
	// print_r($_SESSION);
	// echo "
"; $vstr = strtolower($_SESSION['vstr']); if ($code==$vstr) { //实现页面的跳转 echo "<script>location=&#39;http://www.baidu.com&#39;</script>"; }else{ echo "<script>alert(&#39;验证码输入错误&#39;)</script>"; //echo "返回注册页面"; echo "<script>location=&#39;index.php&#39;</script>"; } ?>
auth.php 用来生成验证码
<?php //开启session,开启session之前,不能有任何输出
session_start();


$width = 50;//验证码背景宽度
$height = 26;//验证码背景高速
$fonttype = 10;//验证码中字的大小
//准备画布
$im = imagecreatetruecolor($width,$height);
//准备涂料
$black = imagecolorallocate($im, 0, 0, 0);
$gray = imagecolorallocate($im, 200, 200, 200);

//填充背景
imagefill($im, 0, 0, $gray);

//文字坐标
$x = ($width-4*$fonttype)/2 +2;
$y = ($height-$fonttype)/2 + $fonttype;

//在画布上画图像或者文字

//把三个数组联系起来
$strarr = array_merge(range(1, 9),range(a, z),range(A, Z));

//打乱数组
shuffle($strarr);

//array_slice:取数组的前几位
//Join 将数组变成字符串,并且以第一个变量做分隔符
$str = join(&#39;&#39;,array_slice($strarr, 0,4));

//把$str放入session中,可方便所有页面使用
$_SESSION[&#39;vstr&#39;] = $str;

$file = "E:/PHP/fonts/msyh.ttf";
// $file = "fonts/msyh.ttf";

imagettftext($im, $fonttype, 0, $x, $y, $black, $file, $str);

//输出最终图像或保存最终图像
header("content-type:image/png");
imagepng($im);
//释放画布资源
imagedestroy($im);
?>

php验证码设计:
页面跳转:
1.php跳转
header("location:index.php");


2.js跳转(建议使用)
echo "<script>location = 'http://www.baidu.com'</script>";
echo "<script>location = 'index.php'</script>";


js弹窗:
echo '<script>alert("验证码有误,请重新输入")</script>';


2.缩放
获取图片的宽高
1.getimagesize(); //得到图片的大小  可以直接通过图片("lyf.jpg")就可以获取图片的所有信息
2.imagesx();//得到图片的宽 必须先获取图片的资源(imagecreatefromjpeg("lyf.jpg");),才能得到图片的信息
3.imagesy();//得到图片的高 必须先获取图片的资源,才能得到图片的信息


已经存在的图片形成画布资源:
1.imagecreatefromjpeg();

<?php $im = imagecreatefromjpeg("lyf.jpg");

$x = imagesx($im);
$y = imagesy($im);

echo $x . $y;
exit;



header("content-type:image/jpeg");
imagejpeg($im);
?>

方法二获取图片的大小:
<?php $imgfile = "lyf.jpg";

$imgarr = getimagesize($imgfile);

echo "<pre class="brush:php;toolbar:false">";
print_r($imgarr);
echo "
"; exit; $im = imagecreatefromjpeg("lyf.jpg"); echo $x . $y; header("content-type:image/jpeg"); imagejpeg($im); ?>


  图片缩放函数:
  imagecopyresampled();


  图片等比例缩放:

 <?php $imgfile = "lyf.jpg";

	//为了得到大图的宽高
	$imgarr = getimagesize($imgfile);

	$maxw = $imgarr[0];
	$maxh = $imgarr[1];
	$maxt = $imgarr[2];
	$maxm = $imgarr[&#39;mime&#39;];

	//为了把大图变为资源

	$im = imagecreatefromjpeg("lyf.jpg");

	//小图资源
	$minw = 100;
	$minh = 400;


	//等比例缩放
	if (($minw/$maxw)>($minh/$maxh)) {
		$rate =  $minh/$maxh ;		
	}else{
		$rate =  $minw / $maxw ;
	}

	$minw = floor($maxw * $rate);
	$minh = floor($maxh * $rate);
	$minim = imagecreatetruecolor($minw, $minh);

	//把大图缩放成小图
	imagecopyresampled($minim, $im, 0, 0, 0, 0, $minw, $minh, $maxw, $maxh);

	//小图输出
	header("content-type:{$maxm}");

	//判断类型
	switch ($maxt) {
		case 1:
			$imageout = "imagegif";
			break;
		case 2:
			$imageout = "imagejpeg";
			break;
		case 3:
			$imageout = "imagepng";
			break;
		
	}

	$imageout($minim);
	$minfilename = "s_".$imgfile;
	$imageout($minim,$minfilename);
	// imagejpeg($im);


	//释放资源
	imagedestroy($maxim);
	imagedestroy($minim);
	?>

  图片裁剪函数:
  imagecopyresampled();


  图片水印函数:
  imagecopy();




3.裁剪
4.水印
<?php $maxim = imagecreatefromjpeg("lyf.jpg");
	$minim = imagecreatefromjpeg("lyf.jpg");

	$maxw = imagesx($maxim);
	$maxh = imagesy($maxim);

	$minw = imagesx($minim);
	$minh = imagesy($minim);

	imagecopy($maxim, $minim, $maxw-$minw, $maxh-$minh, 0, 0, $minw, $minh);

	header("content-type:image/jpeg");

	imagejpeg($mamim);

 ?>




Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.