19

image_creator に画像作成コードがあります。

<?php
header("Content-Type: image/jpeg");
$im = ImageCreateFromGif("photo.gif"); 
$black = ImageColorAllocate($im, 255, 255, 255);
$start_x = 10;
$start_y = 20;
Imagettftext($im, 12, 0, $start_x, $start_y, $black, 'verdana.ttf', "text to write");
Imagejpeg($im, '', 100);
ImageDestroy($im);
?> 

画像出力用のファイルは image.php で、以下のコードがあります

<html>
<head>
</head>
<body>
    <img src="http://localhost/image_creator.php"/> 
</body>

</html>

image.php を実行すると、空白のページが表示されます。なぜそうなのですか?

4

2 に答える 2

55

これを使用して、画像にテキストを追加します(PHP for Kidsからコピー)

<?php
//Set the Content Type
header('Content-type: image/jpeg');

// Create Image From Existing File
$jpg_image = imagecreatefromjpeg('sunset.jpg');

// Allocate A Color For The Text
$white = imagecolorallocate($jpg_image, 255, 255, 255);

// Set Path to Font File
$font_path = 'font.TTF';

// Set Text to Be Printed On Image
$text = "This is a sunset!";

// Print Text On Image
imagettftext($jpg_image, 25, 0, 75, 300, $white, $font_path, $text);

// Send Image to Browser
imagejpeg($jpg_image);

// Clear Memory
imagedestroy($jpg_image);
?>
于 2012-11-07T11:04:02.970 に答える
5

ここでの問題は、 $black = ImageColorAllocate($im, 255, 255, 255);//<== これは黒ではなく、白です //黒の場合は次のようになります。

$black = ImageColorAllocate($im, 0, 0, 0);
于 2013-12-11T11:45:08.090 に答える