Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using raw image data from ajax request for data URI

I'm trying to use a combination of Ajax and data URIs to load a JPEG image and extract its EXIF data with a single HTTP request. I am modifying a library (https://github.com/kennydude/photosphere) to do this; currently this library uses two HTTP requests to set the source of the image and to get the EXIF data.

Getting the EXIF works, no problem. However I am having difficulty using the raw data from the ajax request as source for the image.

Source code for a small test of the technique:

<!DOCTYPE html> <html> <head> <script type='text/javascript'>  function init() {     // own ajax library - using it to request a test jpg image     new Ajax().sendRequest     (         "/images/photos/badger.jpg",          { method : "GET",             callback: function(xmlHTTP)             {                  var encoded = btoa (unescape(encodeURIComponent(xmlHTTP.responseText)));                 var dataURL="data:image/jpeg;base64,"+encoded;                  document.getElementById("image").src = dataURL;             }         }     ); }  </script> <script type="text/javascript" src="http://www.free-map.org.uk/0.6/js/lib/Ajax.js"></script> </head> <body onload='init()'> <img id="image" alt="data url loaded image" /> </body> </html> 

I get what looks like sensible jpeg data sent back, and the length (in bytes) of the raw data and the base64-encoded-then-unencoded-again raw data is the same. However the attempt to set the image src fails on both Firefox (25) and Chrome (31) (current versions) - chrome displays "broken image" icon suggesting the src is an invalid format.

I used this mozilla page for info on base64 encoding/decoding:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Base64_encoding_and_decoding

Any idea what might be wrong? Looking around I can create the base64 encoded image server side but can it be done client side like this? For one thing, base64 encoding server side obviously increases the data size and the whole purpose of this exercise is to cut down the amount of data being transferred from the server, as well as the number of requests.

Thanks, Nick

like image 563
nickw Avatar asked Nov 17 '13 20:11

nickw


People also ask

How do you use data URI?

A data URI is a base64 encoded string that represents a file. Getting the contents of a file as a string means that you can directly embed the data within your HTML or CSS code. When the browser encounters a data URI in your code, it's able to decode the data and construct the original file.

Can AJAX send data to server?

Ajax (Asynchronous JavaScript And XML) allows web pages to be updated asynchronously by exchanging data to and from the server. This means you can update parts of a web page without reloading the complete web page.

Can we use HTTP GET or POST for AJAX calls?

jQuery - AJAX get() and post() Methods. The jQuery get() and post() methods are used to request data from the server with an HTTP GET or POST request.


2 Answers

Thanks for that. I've done a bit more digging on this and it turns out there is a solution at least on current versions of Firefox and Chrome (EDIT: IE10 works too). You can use XMLHttpRequest2 and use a typed array (Uint8Array). The following code works:

<!DOCTYPE html> <html> <head> <script type='text/javascript'>  function init() {     var xmlHTTP = new XMLHttpRequest();     xmlHTTP.open('GET','/images/photos/badger.jpg',true);      // Must include this line - specifies the response type we want     xmlHTTP.responseType = 'arraybuffer';      xmlHTTP.onload = function(e)     {          var arr = new Uint8Array(this.response);           // Convert the int array to a binary string         // We have to use apply() as we are converting an *array*         // and String.fromCharCode() takes one or more single values, not         // an array.         var raw = String.fromCharCode.apply(null,arr);          // This works!!!         var b64=btoa(raw);         var dataURL="data:image/jpeg;base64,"+b64;         document.getElementById("image").src = dataURL;     };      xmlHTTP.send(); }  </script> </head> <body onload='init()'> <img id="image" alt="data url loaded image" /> </body> </html> 

Basically you ask for a binary response, then create an 8-bit unsigned int view of the data before converting it back into a (binary-friendly) string String.fromCharCode(). The apply is necessary as String.fromCharCode() does not accept an array argument. You then use btoa(), create your data url and it then works.

The following resources were useful for this:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Typed_arrays?redirectlocale=en-US&redirectslug=JavaScript%2FTyped_arrays

and

http://www.html5rocks.com/en/tutorials/file/xhr2/

Nick

like image 197
nickw Avatar answered Oct 06 '22 00:10

nickw


Nick's answer works very well. But when I did this with a fairly large file, I got a stack overflow on

var raw = String.fromCharCode.apply(null,arr); 

Generating the raw string in chunks worked well for me.

var raw = ''; var i,j,subArray,chunk = 5000; for (i=0,j=arr.length; i<j; i+=chunk) {    subArray = arr.subarray(i,i+chunk);    raw += String.fromCharCode.apply(null, subArray); } 
like image 26
RoccoB Avatar answered Oct 06 '22 00:10

RoccoB