当我尝试在我的 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);