我正在尝试使用gd lib生成图像,并使用ajax将其加载到我的html页面中。
在我的php文件中,我有一个简单的类,它调用方法来生成图像。我不想将图像保存到目录中。
以下是方法:
private function generate_image(){
$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);
}
我在html页面中得到的结果如下所示:����JFIF��>CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality ��C $.' ",#(7),01444'9=82<.342��C 2!!22222222222222222222222222222222222222222222222222��x"�� ���}!1AQa"q2
等等。
这与header('Content-Type: image/jpeg');
的展示位置有关吗?它不应该在方法或类中吗?