線上書籍

Home

[982]PHP網站開發 進階應用技巧

<?php
header("Content-type: image/png");
$im = imagecreatefrompng("blank_logo.png") or die("無法建立GD圖片");
$im2 = imagecreatefrompng("icon/Thumbs_Up.png") or die("無法建立GD圖片");

$gray = imagecolorallocate($im, 0,0,0 );

//imagecopy($im , $im2  , 30  , 4  , 0 , 0 , 32 ,32);
imagecopyresampled($im , $im2 , 26  , 2  , 0  , 0  , 40  , 40  , 256 , 256);

$n=strlen($_POST['title'])/3;
$text_w=$n*12;
$x=(92-$text_w)/2;

imagettftext($im , 9 , 0  , $x  , 47  , $gray  , "fireflysung.ttf" , $_POST['title']);

imagepng($im);
imagedestroy($im);
?>