php图形图像处理,php图形图像处理

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

/*一、简单的图像输出*/

$im = imagecreate(60,40);

$pink = imagecolorallocate($im,35, 25,220);

imagejpeg($im);

//imagestring($im,16, 200, 200,"I LOVE YOU",);

/* 二、将字符串写入到图片中 */

//载入图片

$me=imagecreatefromjpeg("../../images/3.jpg");

//设置字体颜色

$text_color = imagecolorallocate($me, 255,84,0);

//设置的字体的位置

$font = "C:\Windows\Fonts\simkai.ttf";

//要写入的字符串

$str = iconv('GBK',"UTF-8", "php开发...");

//将字符串写入到图片中

imagettftext($me,20,0,50,50, $text_color,$font, $str);

//输出图片

imagejpeg($me);

//释放资源

imagedestroy($me);

session_start();

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

//验证码

//图像宽度

$image_width =65;

//图像高度

$image_height =45;

//设置随机数的种子

//srand(microtime()*1000);

for ($i=0;$i<6;$i++){

$new_str .=dechex(rand(0, 100));

}

$_SESSION[code]=$new_str;

$image = imagecreate($image_width, $image_height);

imagecolorallocate($image,rand(0,255), rand(0,255),rand(0,255));

for ($i=0;$i

$font = mt_rand(3, 8);//生成随机字体大小

$x = mt_rand(3,10)+$image_width*$i/4;

$y = mt_rand(3,$image_height/4);

$color = imagecolorallocate($image,mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));

imagestring($image, $font, $x, $y,$_SESSION[code][$i], $color);

}

imagepng($image);

imagedestroy($image);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值