0

在此处输入图像描述当我尝试在我的 Web 应用程序 ( PHP ) 中构建验证码时,它不会呈现图像。所以我尝试了以下代码,这是php.net中的简单示例。但这也没有渲染图像。我在 wamp2.2 中使用 php 5.3

// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);

// Set the content type header - in this case image/jpeg
header('Content-Type: image/jpeg');

// Output the image
imagejpeg($im);

// Free up memory
imagedestroy($im);
4

1 回答 1

0

启用error reporting.

像这样移动你header(),然后让我知道情况-

<?php
header('Content-Type: image/jpeg');
$im = imagecreatetruecolor(120, 20) or die('Cannot Initialize new GD image stream');
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);
imagejpeg($im);
imagedestroy($im);
?>

用于Firebug检查 HTML 和其他错误 :)

于 2013-05-02T03:47:52.283 回答