vote up 2 vote down star

The situation is that you have to work with an image API and you have to make a POST request to get an image stream that you want to display in the rest of your web page.

I can make an ajax request to that service on page load using jQuery, but i just get a binary stream returned. Is there anyway that JavaScript can take that binary string and display the content type that is in the header?

flag

44% accept rate

5 Answers

vote up 2 vote down

I believe you'll need to arrange to have the stream delivered when a URL is referenced by an HTTP GET operation - then have JavaScript set the src attribute of the image to that URL. I've seen this done with ASP.NET, where a .ashx handler is used to stream the image. One then references http://site.com/images/imagehandler.ashx?parameters.

link|flag
I do not have any control over the how the stream is delivered. I cannot arrange to have this done with a GetOperation. Unless, maybe I could write a proxy that would pretty much be a pass through... – taelor Mar 27 at 14:55
Such a proxy would work just fine. Just use WebRequest in an async handler. – John Saunders Mar 27 at 17:52
vote up 2 vote down

I believe what you are looking for is that Data URI Scheme - which allows you to format a really long URI that specifies the needed binary data in itself.

link|flag
If the resulting stream is to be displayed in 'the rest of the page', however, I fear that it will be much too big to fit in a data:URI... – Martijn Mar 27 at 11:58
I have seen this, but I don't know how to convert the binary into base64. Do you know of any good blog posts? Does this work with IE6 or even IE7? – taelor Mar 27 at 14:25
vote up 1 vote down

Can you not set an image's src attribute to the url you are using for your ajax communication currently? Or do you have to strip out other info from the ajax call first?

link|flag
the img tag uses a GET request not a POST request. so I don't think the img tag src attribute would work. – taelor Mar 27 at 14:13
vote up 1 vote down

do form post request with targeting an iframe. this is the only way.

link|flag
yah, I have implemented it using this method. its a sloppy hack, but it does kinda work. i'll give you a +1, but this doesn't answer the question $) – taelor Mar 27 at 14:08
vote up 0 vote down

Just use javascript to create an img element with the url that returns the image as the src:

// jquery
$(#some-id).append('<img src="/get-image/?foo=bar"/>');
link|flag
the img tag uses a GET request not a POST request. I wish it was this easy. – taelor Mar 27 at 14:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.