PHP 图片生成文字
Posted studyphp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 图片生成文字相关的知识,希望对你有一定的参考价值。
$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 图片生成文字的主要内容,如果未能解决你的问题,请参考以下文章