Tagged Questions

A data uri is an internet address which replaces online files by having a base64 or plain text representation of the file. These uris can be used in the src attribute of many html tags, therefore there is less need for using server files. These are not fully supported in IE, so it's always good to ...

learn more… | top users | synonyms

5
votes
3answers
352 views

How can I convert image binary from API call to data URI in Javascript?

The Google API I'm using is transmitting images only as binary data. I have absolutly no idea how to put this into a data URI to display it, thanks for any help! The call I'm talking about is this ...
4
votes
2answers
1k views

Should setting an image src to dataURL be available immediately?

Consider the following (fragile) JavaScript code: var img = new Image; img.src = "data:image/png;base64,..."; // Assume valid data // Danger(?) Attempting to use image immediately after setting src ...
3
votes
1answer
94 views

Can you send images in data:uri format to GMail?

I'm making a web app in Django that sends user an image to their email. The way that seems most attractive to me for sending the image is in the data:uri format. However, I tested sending this email ...
3
votes
3answers
204 views

MSHTML fallback for data uri:s

My site uses data uri:s to reduce the number of HTTP requests to my site. The problem is that data uri:s don't work in IE7, a browser that we have to support (No, we don't need IE6). I've followed ...
3
votes
2answers
276 views

Chrome - “Save As…” disabled in right click menu when using a “data” url

If you paste the following into the url bar in chrome and try to do right click-> save as... the save as... is grayed out. Any way to stop this from being grayed out? URL: ...
3
votes
1answer
619 views

BASE64 in HTML is not working

I had tried all possible way to display image using base64 string. But none of them are working. I tested it on IE6,7, Firefox 3. Please tell me what is wrong with below code. <head> <STYLE ...
3
votes
2answers
2k views

Drawing an image from a data URL to a canvas

How can i open an image in a Canvas ? which is encoded I am using the var strDataURI = oCanvas.toDataURL(); The output is the encoded base 64 image. How can i draw this image on a canvas? I ...
2
votes
1answer
108 views

render pdf using javascript

In my App I need render a dynamic pdf. I have an ajax function that call a php function that return a pdf (string format). Now I render this pdf using data-uri in this way: ...
2
votes
0answers
129 views

Data URI used to export to CSV/Excel (no server-side request) : browser support/limitations?

Following the questions: Javascript or Flash export to CSV/Excel Is it possible to use any HTML5 fanciness to export local storage to Excel? and as suggested, I'm thinking about generating a CSV ...
2
votes
3answers
430 views

How to resize a Base64 encoded Data URI PNG using javascript?

I have a Base64 encoded PNG squeezed out of a web socket into a web page, that I display using Data URI <img src="data:image/png;base64, --base64 png-- "> Is there a way in javascript or ...
2
votes
2answers
308 views

Why use data URI scheme?

Basically the question is in the title. Many people have had the question stackoverflow of how to create a data URI and problems therein. My question is why use data URI? What are the advantages to ...
2
votes
1answer
225 views

A better test for base64 URI support (can I create a large base64-encoded image in JS?)

I'm using Modernizr to detect the features supported in the browser our users are running, so far so good. But I've come up against a theoretical problem when testing for base64 compatibility. The ...
2
votes
1answer
553 views

Cross-browser Save As .txt

Is there a JavaScript library that allows to save strings as txt files, and works cross-browser? In the past, I have been using Downloadify, but I am looking at another option for a couple reasons: ...
2
votes
3answers
213 views

check if browser supports data uri at run time

I am looking to use data uri base 64 strings in my asp.net c# web application. I know only some browsers support this, so at runtime I will need to check if the current browser supports base 64 ...
2
votes
3answers
294 views

HTML5 Data URI fails when a base64 null is followed by an =?

I'm doing some pretty unholy things with JavaScript, and I've run into a weird problem. I am creating binary data that fills a buffer of a static size. If the content doesn't fill the buffer, the ...
2
votes
4answers
525 views

What is Data URI support like in major email client software?

Data URIs are a standard way to embed images and other binary data in HTML, and browser support is well documented on the web. (IE8 was the first version of IE to support Data URI, with a max 32 KB ...
2
votes
2answers
545 views

iPhone - Data URI's (css background images) only work when connected to WIFI

I've created a mobile web application for use by Android and iPhone devices, after testing I was happy that everything worked perfectly and so decided to try optimising it a little. I decided I would ...
2
votes
1answer
473 views

Setting img src to a data url via work does not work in IE8?

When I attempt to set an image to use a data url via JavaScript (from this question), it does not appear to work in IE8. The page in that first link has: <img id="foo" src="alphaball.png"> On ...
1
vote
1answer
40 views

Blank image encoded as data-uri

I've built an image slider (based on the terrific bxSlider) which will preload images just-in-time before they slide into view. It's working pretty well already, but I don't think my solution is valid ...
1
vote
1answer
74 views

How to force the filename extension of a downloaded gzipped data URI?

I have a GZipped JavaScript file which I am encoding with a data:URI. For example: <a href="data:application/x-gzip;base64,FOO">My Javascript File</a> When the user right-clicks and ...
1
vote
1answer
98 views

Mobile Browser (iPad/iPhone/iPod/Android) crashes when updating image continuously javascript

we are trying to update the image src with base64 string using data URIs on our webpage every second with Java Script. Java Script(AJAX) gets the latest image from webserver. But all mobile browsers ...
1
vote
1answer
83 views

preload datauri images in javascript

With javascript, how I can preload images that dont have a path source but a datauri as its source? I have something like this: var image = new Image(); ...
1
vote
1answer
306 views

Filename of downloaded file in data:Application/octet-stream;

I am trying to download a file usin data uri in following manner. <input type="button" ...
1
vote
0answers
110 views

Is there a URL shortener that works with really long data URIs?

I have an app that generates web-pages as data URIs. These data URIs can be really long. I have a page that has a Data URI that is 103,828 characters long, for instance. Everything about the app ...
1
vote
1answer
288 views

How do you base-64 encode a PNG image for use in a data-uri in a CSS file?

I want to base-64 encode a PNG file, to include it in a data:url in my stylesheet. How can I do that? I’m on a Mac, so something on the Unix command line would work great. A Python-based solution ...
1
vote
0answers
146 views

How can a web page be redirected to a data: uri from http://?

I would like to load a webpage with limited contact to a server. I have a cross-application link but safari just will not open the data: uri. Is there anyway to begin that with http://? What about ...
1
vote
2answers
548 views

Opening a base64 PDF in javascript in IE6

In javascript, I have a variable which holds a pdf in base64 (the pdf is generated in flex and passed to js). I want to open it in the browser (ie I want the browser to display the open/save dialog ...
1
vote
1answer
294 views

Data-URI's and caching

I read this on Wikipedia: Data URIs are not separately cached from their containing documents (e.g. CSS or HTML files) so data is downloaded every time the containing documents are redownloaded. ...
0
votes
1answer
71 views

Including base64 gzipped stylesheets/images in javascript?

I know you can include css and images, among other file types, which have been stored in base64 form within a javascript file. However, those are decently huge... and gzipped, they shrink down a ...
0
votes
0answers
32 views

DATA URI and Magento. Error

I'd like to change the tiny images on the magento stylesheet to data uri's. i did try this method. http://www.websiteoptimization.com/speed/tweak/inline-images/ and this ...
0
votes
0answers
76 views

Data_url animated gif is cached in memory in recent Chrome build. Please help to find some trick

Most recent build of Chrome (16.0.912.63 now) gave me one trouble with the developing of project I'm currently working on. In previous builds, data_url images were stored in memory as separate ...
0
votes
1answer
62 views

javascript Data URI charset when saving

I am using something like this in a utf-8 page: var data = "a\tb\tc\r\nd\te\tf"; window.location.href = "data:text/csv;charset=utf-8," + encodeURIComponent(data); to force the browser to download ...
0
votes
1answer
123 views

DataURI image texture in three.js doesn't work in Firefox

I am using three.js to do some online interactive modelling of geology, and have been creating image URI using the Canvas Element (output would be: data:image/png;base64,). The image creation works ...
0
votes
1answer
60 views

data URI and Graphviz

Is it possible to use the Graphviz [image] tag to embed a data URI string? i.e. simple.dot: (should display a red dot image -> node B) digraph G { rankdir="LR"; A -> B [label="test 1"]; A ...
0
votes
1answer
39 views

Does data:image behave differently for Firefox/Opera?

I have used the data:image URI to set the source of an image tag. By default, the CSS display property is none. When I get the image from the user, I change the source on this tag and it shows the ...
0
votes
2answers
110 views

How to delay image load with data URI?

I am using data URI to load images one page and I put script at the end of my HTML. Unlike use normal url for image src, the data will be directly loaded in the HTTP request for the html page. Thus, ...
0
votes
1answer
81 views

How do I preserve the original img src (disable Data URI) when pasting an image in a Firefox contentEditable div

I have an editor which contains a div with contentEditable=true, where I let the user paste images from the clipboard, as well as change the image's SRC attribute from inside the editor. In IE it's ...
0
votes
1answer
62 views

24 bit Alpha Channel in Base64_encode

So I am experimenting with using icons in my CSS using base64 encoded pngs. I have used http://www.motobit.com/util/base64-decoder-encoder.asp to convert them. However, the pngs only have an 8bit ...
0
votes
2answers
296 views

PHP Data-URI to file

I have a data URI I am getting from javascript and trying to save via php. I use the following code which gives a apparently corrupt image file: $data = $_POST['logoImage']; $uri = ...
0
votes
4answers
165 views

performance of method to convert image to base64

I use the following method to convert an image to a base64 string: FileStream fs = new FileStream(imagePath, FileMode.Open,FileAccess.Read); byte[] filebytes = new byte[fs.Length]; fs.Read(filebytes, ...
0
votes
1answer
186 views

How do I convert a file stream to a data URI in Python?

I have a file stream of an image in Python: \x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x04\x87... How do I convert this to a data URI? 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAU...'
0
votes
0answers
135 views

How might one in effect serve data URIs via nginx?

Assume that nginx is running at http://foo.bar/. I would like to respond to the following request with the image and the appropriate Content-Type header. ...