国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 網(wǎng)站 > 建站經(jīng)驗(yàn) > 正文

php技術(shù)實(shí)現(xiàn)加載字體并保存成圖片

2024-04-25 20:40:04
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

下面通過(guò)一段代碼給大家詳解介紹下php技術(shù)實(shí)現(xiàn)加載字體并保存成圖片。

// Set the content-type

header("Content-type: image/png");

// Create the image

$im = imagecreatetruecolor(400, 100);

// 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, 399, 100, $white);

// The text to draw

$text = '字典網(wǎng)';

// Replace path by your own font path

$font = 'fontName.ttf';

// Add some shadow to the text

//imagettftext($im, 60, 0, 11, 21, $grey, $font, $text);

// Add the text

imagettftext($im, 60, 0, 0, 70, $black, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()

imagepng($im);

imagedestroy($im);

如果想保存圖可以用下面代碼

ob_start();

imagejpeg($im);

$img = ob_get_contents();

ob_end_clean();

$size = strlen($img);

$fp2=@fopen('tst.jpg', "a");

fwrite($fp2,$img);

fclose($fp2);

以上代碼就可以完成加載字體并保存成圖片,希望大家會(huì)喜歡

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 高淳县| 新邵县| 永善县| 中西区| 张掖市| 惠东县| 高台县| 延长县| 凉城县| 平果县| 晴隆县| 喀什市| 襄汾县| 登封市| 方城县| 全南县| 开化县| 开原市| 合作市| 长泰县| 杭州市| 宜君县| 潜山县| 安顺市| 平顶山市| 逊克县| 准格尔旗| 曲靖市| 察雅县| 松桃| 武山县| 嘉祥县| 息烽县| 濉溪县| 铁力市| 海淀区| 黎城县| 罗源县| 蒙城县| 文安县| 淮安市|