排行榜

php将文字生成图片

本文阅读 1 分钟
首页 后端开发 正文
广告

php将文字生成图片


<?php 
// Set the content-type 
header('Content-type: image/png'); 
 
// Create the image 
$im = imagecreatetruecolor(1200, 600); 
 
// Create some colors 
$white = imagecolorallocate($im, 255, 255, 255); 
$grey = imagecolorallocate($im, 128, 128, 128); 
$black = imagecolorallocate($im, 0, 0, 0); 
imagefilledrectangle($im, 0, 0, 1200, 600, $white); 
 
// The text to draw 
$text = '小明又出现了…… 
老师:“多位数减法,遇到低位数不够减时,就向高位数去借。” 
小明:“高位数不借怎么办?” 
老师:“你出去..! 
 
老师讲圣经,讲到大洪水把地球上生物全淹死了。 
小明问老师:你确定? 
老师说:确定。 
小明:那鱼呢? 
老师:你出去!'; 
// Replace path by your own font path 
$font = 'hei.ttf'; 
 
// Add some shadow to the text 
imagettftext($im, 12, 0, 51, 101, $grey, $font, $text); 
 
// Add the text 
//imagettftext($im, 12, 0, 50, 100, $black, $font, $text); 
 
// Using imagepng() results in clearer text compared with imagejpeg() 
imagepng($im); 
imagedestroy($im); 
?>


本文来自投稿,不代表本站立场,如若转载,请注明出处:https://www.unfit.cn/archives/55.html
Markdown 简明语法
« 上一篇 07-19
将百度搜索结果转换成json
下一篇 » 07-19
广告

相关推荐