好的,所以我正在学习如何使用PHP的GD库来生成民意调查,图像等。问题是,当使用imagejpeg
函数进行图像输出时,没有显示任何内容屏幕。在本练习中,我在HTML论坛上键入文本,需要使用GD库将其放在图像上,基本上将文本放在图像上。这很简单,我只是不明白为什么我的图像不会显示。下面是HTML表单代码和PHP代码。
HTML表单:
<html>
<head>
<title> Create Buttons </title>
</head>
<body>
<form action ="button.php" method ="post">
<p> Type button text here </p>
<input type="text" name="button_text" size ="20" />
<p> Choose button color: </p>
<input type ="radio" name="color" value="red"> Red <br>
<input type ="radio" name="color" value="green"> Green <br>
<input type ="radio" name="color" value="blue"> Blue <br>
<input type ="submit" value ="Create Button" />
</form>
</body>
</html>
PHP代码:
<?php
Header('Content-type: image/jpeg');
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
$button_text = $_POST['button_text']; var_dump($button_text);
$color = $_POST['color']; var_dump($color);
if(empty($color) || empty($button_text)) {
echo " Could not create image - form not filled correctly";
exit;
}
$path = $DOCUMENT_ROOT."/uploads/$color-button.jpg";
$im = imagecreatefromjpeg ($path);
$width_image = imagesx($im);
$height_image = imagesy($im);
$width_image_wo_margins = $width_image-(2*18);
$height_image_wo_margins = $width_image-(2*18);
$font_size = 33;
putenv('GDFONTPATH=C:\Windows\Fonts');
$fontname = getenv('GDFONTPATH') . '\comic.ttf';
if(!is_file($fontname)) {
die( "Missing Font");
}
do {
$font_size--;
$bbox = imagettfbbox($font_size,0,$fontname,$button_text);
$right_text = $bbox[2];
$left_text = $bbox[0];
$width_text = $right_text -$left_text;
$height_text = abs($bbox[7] - $bbox[1]);
}
while($font_size > 8 && ( $height_text > $height_image_wo_margins || $width_text > $width_image_wo_margins));
if ( $height_text > $height_image_wo_margins || $width_text > $width_image_wo_margins) {
echo "Text given wil not fit on button.<br />";
} else {
$text_y = $width_image/2.0 - $width_text/2.0;
$text_x = $height_image/2.0 - $height_text/2.0;
if($left_text < 0) {
$text_x += abs($left_text); //add factor for left overhang.
}
$above_line_text = abs($bbox[7]);
$text_y += $above_line_text;
$text_y -=2;
$white = imagecolorallocate($im,255,255,255);
imagettftext($im, $font_size, 0, $text_x, $text_y, $white, $fontname, $button_text);
imagejpeg($im, NULL,75);
}
imagedestroy($im);
?>
答案 0 :(得分:0)
它没有显示,因为您实际上没有做任何事情来显示图像。虽然这个脚本创建了一个图像,但你需要另一个实际调用它,就像在vanilla HTML中一样。
此主题已在之前的SO PHP GD Library: Output an image and text on same page上进行了介绍。
我还建议您完成一两个教程。如果您进行快速搜索,可以使用数十种。我不会在这里张贴任何冒险将其变成“20 Great GD Tutorials”的帖子。
答案 1 :(得分:0)
使用适用于我的标题('Content-Type:image / jpeg')时删除echo语句
答案 2 :(得分:0)
您的问题是var_dump
声明。
即将文本发送到输出。 imagejpeg()
调用可能正在创建图像,但不会使用var_dump
语句呈现。