PHP处理图像须要拓展库GD库的支持
可以通过PHPINFO()函数查看GD库是否开启,如果没有开启在PHPINI中开启
检测拓展库是否加载:extension_loaded(\"大众GD\"大众)
2.PHP创建图片的方法
<?php
//1.发送HTTP头文件,声明内容为图像
header(′Content-type:image/jeg);
//2.创建画布
$img=imagecreatetruecolor(100,50);
//3.创建绘图所须要的颜色,例如:赤色
$color=imagecolorallocate($img,155,0,0);
//4.绘图(添补画布、画圆、画方块、画线条、画布上写字)
imagefill($img,0,0,$color);
//5.输出图像
imagjpeg($img);
//6.开释图像资源
imagedestroy($img);
?>
3.图像处理之滋扰线的绘制
header(′Content-type:image/jeg);
$img=imagecreatetruecolor(150,50);
$bg=imagecolorallocte($img,255,255,255);
imagefill($img,0,0,$bg);
$black=imagecolorallocate($img,0,0,0);
//划线
imageline($img,0,0,150,50,$black);
imageline($img,0,50,150,0,$black);
//天生随机颜色
$coloe = imagecolorallocate($img, mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
//绘制多条滋扰线
for($i=0;$i<10;$i++){
//随机划一条线
imageline($img,mt_rand(0,150),mt_rand(0,50),mt_rand(0,150),mt_rand(0,50),$color);}
imagejpeg($img);
imagedestroy($img);
?>
4.滋扰点的绘制
5.验证码笔墨处理
6.验证码类框架搭建
7.验证码类功能实现
8.验证码类功能完善
9.验证码类的利用方法
10.视频搜索后盾人可不雅观看
更多精彩内容请关注 ---- 微信公众号:houdunit
看完不要跑记得出来吐吐槽!
╰( ̄▽ ̄)╮