Reading Image from AJAX response - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:20:17Z http://stackoverflow.com/feeds/question/1038916 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1038916/reading-image-from-ajax-response 0 Reading Image from AJAX response War Coder 2009-06-24T15:00:48Z 2009-06-24T15:05:00Z <p>I have a url that when requested will return an image. I want the url to be requested through an AJAX request. The ajax request returns binary data which is what is being deplayed. but i want the actual image displayed not the binary data. Am using php on the server side and i have set the below headers:</p> <pre><code>header("Cache-Control: no-cache, must-revalidate"); header ("Content-type: text/jpg; charset=windows-1251"); </code></pre> <p>Please i need advise on what i need to do.</p> http://stackoverflow.com/questions/1038916/reading-image-from-ajax-response/1038933#1038933 2 Answer by Ólafur Waage for Reading Image from AJAX response Ólafur Waage 2009-06-24T15:03:29Z 2009-06-24T15:03:29Z <p>You need to send an url to this Photo, even if its just a PHP file with an ID</p> <p>For example</p> <pre><code>&lt;img src='thumbGenerator.php?id=1337' /&gt; </code></pre> <p>And then this PHP file outputs the binary data.</p> http://stackoverflow.com/questions/1038916/reading-image-from-ajax-response/1038946#1038946 0 Answer by tj111 for Reading Image from AJAX response tj111 2009-06-24T15:05:00Z 2009-06-24T15:05:00Z <p>You need to read up on <a href="https://developer.mozilla.org/en/data%5FURIs" rel="nofollow"><code>data</code> urls</a> for binary image data. Keep in mind this method isn't supported in Internet Explorer. If you need cross-browser compatibility then you will need to store the files somewhere on the server and link to them using the images <code>src</code> attribute. Or link the <code>src</code> attribute to a php script that generates the images and serves them correctly.</p>