基于文本PHP的动态图像

时间:2010-11-08 10:23:30

标签: php gd gd2

我想使用GD生成一个花哨的字体文本图像。

我找到了:

<?php
// Settings
$sText = 'This is just a test!'.@$_GET['t']; // Text of heading
$sFont = 'Bryant-Bold.ttf'; // Default font for headings
$sMain = @$_GET['c'] ? $_GET['c'] : 0xF2AB27; // Get a font or default it

// Calcuate the width of the image
$arSize = imagettfbbox(24, 0, $sFont, $sText);
$iWidth = abs($arSize[2] - $arSize[0]);
$iHeight = abs($arSize[7] - $arSize[1]);

// Create the image
header("Content-Type: image/png"); // Set the content-type
$hImage = imagecreatetruecolor(200, 24);
ImageFill($hImage, 0, 0, IMG_COLOR_TRANSPARENT);
imagesavealpha($hImage, true);
imagealphablending($hImage, false);
imagettftext($hImage, 20, 0, 0, 24, $sMain, $sFont, $sText); // Draw the text
imagepng($hImage); // Generate the image
imagedestroy($hImage); // Destroy it from the cache
?>

但它看起来像这样:http://img638.imageshack.us/img638/4575/testphp.png (砍掉零件)

1 个答案:

答案 0 :(得分:3)

输出图像的固定宽度为200!

$hImage = imagecreatetruecolor(200, 24);

你应该动态计算宽度 - 可能你需要使用变量$hImage

$hImage = imagecreatetruecolor($hImage, 24);
相关问题