修改过后的数字英文字符生成图片代码

本文介绍了一段PHP代码,用于生成包含特定数字和英文字符的图片。通过设置颜色、字体等参数,该代码能够创建一张包含指定文本的彩色图片,并将其保存为JPEG格式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

header("Content-type: image/png");
$im = imagecreatetruecolor(280, 40);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$mycolor = imagecolorallocate($im, 32, 32,32);
imagefilledrectangle($im, 0, 0, 399, 50, $white);


$text = '13812520520';
$font = 'georgiab.ttf';
$filename= uniqid();
imagettftext($im,28, 0, 10, 30, $mycolor, $font, $text);
imagejpeg($im, 'file/mobile/'.$filename.'.jpg');
imagepng($im);
imagedestroy($im);

 

备份

 

posted on 2013-10-08 12:55 codebox 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/code123/p/3356899.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值