码迷,mamicode.com
首页 > Web开发 > 详细

PHP 图片生成文字

时间:2016-11-23 19:36:51      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:des   通过   5.0   div   file   std   clr   ges   pre   

$dst_path = ‘./1.png‘;
$font_file = ‘./ADOBEHEITISTD-REGULAR (V5.010).OTF‘;
$img_bg = imagecreatefrompng($dst_path); //打开图片,
$bg_width = imagesx($img_bg);
$clr = ImageColorAllocate($img_bg, 0xFF,0xFF,0xFF);//这个值手册说必须通过create 图片才能写

imagettftext($img_bg, 20, 0, 90, 150, 255, $font_file, ‘669‘);//255 为颜色标识符

// HTTP/1.0
header(‘Pragma: no-cache‘);
header(‘Content-type: image/png‘);
imagepng($img_bg);
imagedestroy($img_bg);

  

PHP 图片生成文字

标签:des   通过   5.0   div   file   std   clr   ges   pre   

原文地址:http://www.cnblogs.com/already/p/6094503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!