html的我有一個PHP函數來生成圖像:從PHP發送圖像通過AJAX
function gen_img(){
$image = imagecreate(200,200);
.... //some php codes
header("Content-type:image/jpeg");
imagejpeg($image);
}
// there is no problem when generating image, image generated successfully when i call the function
我知道如何使用這把它放在HTML:
<img id='imageone' src="link to the function">
// the image shown, loaded in the <img> tag, no problem
,但現在我想要使用jquery ajax加載圖像,然後將其放入<img>
標記。 有人可以告訴我的方式嗎?
爲什麼這樣呢?將html標籤放入dom中的那一刻,瀏覽器會自動加載圖像。爲什麼要經過base64編碼圖像數據的麻煩? – Tschallacka
我想要刷新圖像,並且它是隨機圖像。它最喜歡驗證碼 –
啊。那麼,我會用base 64編碼圖像數據。看到我的回答 – Tschallacka