我是新的使用PHP與圖像。 我已經找到了代碼,顯示圖像圖片不顯示在php
<<?php
// 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);
// Save the image as 'simpletext.jpg'
imagejpeg($im);
// Free up memory
imagedestroy($im);
?>>
但Firefox表現出一些虛假的代碼,而不是說Image.here是將圖像的鏈接,火狐顯示 http://tinypic.com/r/htw6cm/7 這裏是鏈接到圖片
因爲它的localhost你手動嘗試打開圖像? –
是的很明顯,它打開好 – Sharpzain120
你可能發送錯誤的標題。您必須發送帶有jpeg圖像的'Content-Type:image/jpg'。 – JJJ