Top "Data-uri" questions

A data URI is a URL whose scheme part is 'data:' and which directly represents a resource, rather than the location of a resource.

Download data url file

I'm playing with the idea of making a completely JavaScript-based zip/unzip utility that anyone can access from a browser. …

javascript data-uri
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(); …

image html canvas data-uri
Is there any way to specify a suggested filename when using data: URI?

If for example you follow the link: data:application/octet-stream;base64,SGVsbG8= The browser will prompt you to download a …

javascript html url data-uri save-as
Is embedding background image data into CSS as Base64 good or bad practice?

I was looking at the source of a greasemonkey userscript and noticed the following in their css: .even { background: #fff …

css base64 background-image data-uri
Send a base64 image in HTML email

Using a rich-text editor, our users can drag and drop a saved image from their desktop to the editor. The …

email base64 html-email data-uri
Compressing base64 data uri images

Problem I'm creating multiple charts that are then sent to the server to create a PDF. This data can get …

javascript html post data-uri
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. …

html web-standards data-uri
Convert HTML to data:text/html link using JavaScript

Here's my HTML: <a>View it in your browser</a> <div id="html"> <…

javascript html url base64 data-uri
Filename of downloaded file in data:Application/octet-stream;

I am trying to download a file using data uri in following manner: <input type="button" onclick="window.location.…

html data-uri
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 …

php image file-io data-uri