将图像base64从url加载到src

时间:2014-11-26 07:28:56

标签: php jquery html ajax base64

这是questions

的延续

所以我需要从网址加载img(base64):http://test-pb.linuxpl.info/rejestracja-darmowa?task=show_captcha_image

my hmtl site

<img align="middle" id="captcha_image" title="Please enter the code you see in the image into Security code textbox" src="http://test-pb.linuxpl.info/rejestracja-darmowa?task=show_captcha_image">

1 个答案:

答案 0 :(得分:0)

而不是在解决原始问题时找到解决方法,服务器中的图像数据将作为纯文本传输,然后在发送图像数据之前添加以下内容

header("Content-Type: image/jpeg");