2

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 (部分を切り落とします)

4

1 に答える 1

3

出力画像に 200 の固定幅を使用しています!

$hImage = imagecreatetruecolor(200, 24);

幅を動的に計算する必要があります-おそらく変数$hImageを使用する必要があります:

$hImage = imagecreatetruecolor($hImage, 24);
于 2010-11-08T10:35:05.620 に答える