A data URI is a URI which replaces online files by having a base64 or plain text representation of the file.

learn more… | top users | synonyms

1
vote
0answers
11 views

Ajax load image an ddisplay it with dataURI

I am trying with phonegap and jquery to do the following. Load an image with $.ajax(), store it on localStorage, and show it in the html page. $.ajax({ type: 'GET', url: uri, success: ...
0
votes
0answers
8 views

Why does a site without AJAX work over HTTP but not with the Data URI scheme?

Take p01's MATRAKA. I base64'ing the content served at the URI linked, and put it in a data URI: ...
0
votes
0answers
25 views

Javascript data URI to binary

I have a data URI for a PNG image (as the src of an image in an HTML document). I would like to be able to POST that image using an XMLHTTPRequest to a REST API. The API accepts the image in the ...
1
vote
2answers
42 views

Generate base64 string of an image to use in data URI

How to generate base64 string of an image to use in data URI? I have an Base64 image encoding issue that I hope someone can help with. I'm trying to use data uri in my web page (ie <img ...
0
votes
1answer
34 views

DataURL not returning value

I have created a function that stores DataURI of image in local storage. Data is stored perfectly in the local storage but if I try to get value from function i.e. return statement, then I get ...
1
vote
0answers
23 views

Using website logo as data uri or linked image?

What is better for site performance, to have logo as data uri or as linked image? Logo as data uri will save HTTP request, but it will take more space and it will be loaded every time, while logo as ...
4
votes
1answer
78 views

Data URL images unreadable for IE8

I have a 2D barcode generator making some barcodes on the (Java) backend. It gives me data URLs and I set them on the client side using Javascript. All works fine in Chrome, Firefox. But not in IE8 ...
0
votes
0answers
63 views

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 image appears and displays properly in the web page after they submit. Since the image is not ...
0
votes
3answers
39 views

What tool can I use to get a base64 encoded Data URI for use in CSS?

I see a lot of CSS stylesheets with loads of inline Base-64 encoded packed inside a data URI. What tool can I use to get this value?
0
votes
1answer
113 views

LESS — data-uri painter mixin

I’m trying to implement mixin customizing underline of text, like polyfill for CSS3 text-decoration properties: line, style, color, which are not supported yet by browsers. My idea is to perform ...
1
vote
2answers
126 views

Allow download of KML file created from JavaScript and Google Earth API

Want to create a web-application running entirely in the browser without a backend server component that creates KML on-the-fly using Google Earth API where clicking a "download" button activates the ...
0
votes
0answers
51 views

Reading EXIF Data from Data URI using Javascript

I understand that there is a way to read EXIF data from binary string of an image, but is there a way to also read it from Data URI? I actually have access to binary string of an image in certain ...
0
votes
0answers
48 views

Corrupted base64 using toDataURL() in Firefox

I am using the Pixastic library to crop an image. The resulting canvas is converted to a data-URL. The code looks like this: img = Pixastic.process(img, "crop", { rect: { // received via ...
0
votes
0answers
16 views

Is there a way to add data URI as image to wordpress media

I have a data URI obtained from canvas to data URI canvas.Canvas.toDataURL(); Now I want the resulted Data URI to Wordpress media, something like $data = ...
1
vote
1answer
69 views

How to have compass create a data-uri for an image based on a css color name?

In working with a piece of legacy javascript, I've discovered that the only way to style a particular control is to set it's background image. This makes it a pain to support more than a couple of ...
0
votes
1answer
50 views

Turn a human readable string into an image to be displayed with data-uris

Is there any conventional way to turn an arbitrary string into an image? In my use case, lets say I want to have an image for each user that maps directly to that user's name. The concept is similar ...
1
vote
1answer
93 views

Fonts missing from SVG file when placed in <img> data URI or <canvas>

I am checking the use of fonts in SVG and the Canvas (html5). I have translated a svg file in urldata. I got this result: ...
0
votes
1answer
298 views

javascript read blob as data url

I'm making a paste image from clipboard function then I need to convert blob data to base64 encoded data url here's the code: function handlepaste (event, e) { var items = e.clipboardData.items; ...
1
vote
0answers
131 views

How to load data uri links in IOS home screen web apps?

If I open the following page in Safari on an iPad running 6.1.2, clicking on the first link opens a new tab with 'Hello World!', and the second loads 'Hello Again!' in the iframe. <html> ...
0
votes
1answer
131 views

performance of base64 icons in css vs external images for multiple uses

I am using about 30 images from the famfamfam silk icon set and have found these in a base64 encoded format The icons are stored in a .css file (approx 20kb) and each row of results will include 5 of ...
0
votes
1answer
97 views

Data URI ASCII, UTF-8, or base64

When including a Data URI in an HTML page, is it best to use ASCII, UTF-8, or base64? I am using it for an SVG file which can be represented as any of these. The UTF-8 (once URI encoded) is still a ...
1
vote
1answer
155 views

Data URI - how to create them in Java?

I have just been told to send the thumbnail of an image using data URI. I have been searching it but all I found was that its basically a textual representation of a file and can be directly used in ...
1
vote
1answer
91 views

Data URI vs. Binary in Database

I'm posting an image to the server using the DATA URI (client side, using the canvas). I now have two choices: I can save the "image" as a string in a varchar(max) column or I can convert it to byte[] ...
0
votes
1answer
58 views

How to “download” from data: URIs?

I have a data: URI that I need to “download” (read: load as a stream or byte array) using the normal .Net WebClient/WebRequest. How can I do that? I need this because I want to display a XAML file ...
1
vote
1answer
108 views

Why do markers, patterns, and unicode characters display incorrectly in a svg data uri in google chrome?

I am using google chrome version 24.0.1312.57 on Mac OS X 10.6.8. In Safari 5.1.7 the svg image looks like this: In Chrome it looks like this: Notice the markers are gone from the paths and ...
0
votes
1answer
59 views

Icons: Use Data-URIs or Embedded Fonts?

I have a set of about 10 monotone icons 25x25 or less. Which has better performance: 1) Embed them in CSS with data URIs 2) Load them as a font (IcoMoon, etc) Loading as a font seems like it might ...
1
vote
0answers
40 views

Design for HTTP request chunking

Our mobile web app loads up a large number of images and audio files. For a number of reasons I have decided to convert them to Base64 and use Data URIs. This now allows me to group sets of files ...
0
votes
1answer
86 views

Safari Error: kCFErrorDomainCFNetwork -10

I am attempting to load a data-uri in an external CSS file. Here is the code: .icon-blank-page-large { background-image: ...
0
votes
0answers
76 views

Post large DataUri to another server with javascript [SOLVED]

I have a string contains image dataUri. I need to post this string to ANOTHER remote server, so I use the form and iframe technique to do that. the problem is, that when the string is too large (the ...
0
votes
1answer
252 views

Posting a file using Json

I want to upload a binary file using json. I choose Json because with the file I would also like to send additional information. I am going to do this by - Select a file in the file input tag. ...
1
vote
1answer
64 views

How to use <object data= with the syntax <object>?

I can only use: <object> data.. </object>, not: Can I change the syntax: <object data="data:text/html;base64,drgsdrgsdrgsdrgsdrgsdrgsdrg=="></object> into this ...
4
votes
4answers
516 views

How can I force CQ5.5 to ignore CSS data-uri-schemes?

I am trying to include a custom font into css using the data-uri-scheme. CQ5 (I'm using version 5.5) is adding the path from the clientlib directory to the location where the css file with the ...
3
votes
1answer
168 views

css cursor using data-uri

I'm trying to use custom png cursor using data uri but the cursor doesn't change. I've tested on FF 17 which support png as custom cursor. The same data uri work as a background image. Am I using ...
0
votes
0answers
98 views

Data URI scheme base64 vs HTTP requests

I want to display around 80 images (400x300, jpg, around 30kb each) on a single page. (got to love clients) Is it better to use the data uri base64 or request the images through http? The total ...
0
votes
0answers
82 views

jquery draggable set with option to rotate user-chosen resizeable subgroup and subsequent (true) random reordering

after some looking saw nothing exactly like described in title. picture a deck that you cut and reverse half of, then reshuffle. don't laugh#1: i want to use iframes (i got it to work). that way i ...
0
votes
1answer
279 views

Generate canvas replication(jpg/img) from dataURL

I'd like to be able to make a little page where the user can use the drag and drop to place objects on a scene then save their canvas as an image, or post the image to facebook/pinterest. I have ...
1
vote
1answer
730 views

Using an Data URI SVG as a CSS background image

Backstory: Goal: create a triangular shadow that can be applied via CSS and is scale-independant (i.e. a vector, not a raster image) After much research (tho I'm certainly open to alternatives) I ...
0
votes
0answers
118 views

Data URI: MIME type not working in Chrome

This is in reference to my question - HTML5 - Export Web SQL database to a csv or txt file I want to the file to be saved as .csv. But the file is saved as Unknown File type. When I open the file in ...
0
votes
0answers
156 views

Download DataURI's wit IE10

I would like to allow users to open the documents they have selected to upload (this is for an online/offline HTML5 project). In Firefox and Chrome I can easily let people open/download any DataURI ...
2
votes
1answer
451 views

CSS background Data URI not working (Chrome)

I'm trying to embed an image into my css directly as encoded data: background:#fae url("data:image/gif;base64, R0lGODlhEAAOALMAAOazToeHh0tLS/7LZv/0jv b29t/f3//Ub//ge8WSLf/rhf/3kdbW1mxsbP// ...
0
votes
1answer
929 views

How to save file from textarea in Javascript with a name? [duplicate]

Possible Duplicate: Using HTML5/Javascript to generate and save a file I want a client side HTML/JS solution to solve this problem - I have a user-edittable textarea A, a textfield B and a ...
2
votes
1answer
206 views

Any RFC 2397 Data URI Parser for Java?

dataurl := "data:" [ mediatype ] [ ";base64" ] "," data mediatype := [ type "/" subtype ] *( ";" parameter ) data := *urlchar parameter := attribute "=" value value := token ...
0
votes
2answers
164 views

Does data URL only accept binaries or base 64 for Powerpoint?

There is a trick for creating files in the client using data uri. For example, to create a MS powerpoint you can do something like <a ...
1
vote
2answers
136 views

Silent sound data uri?

Does anyone know of a way to set a data uri to a valid silent sound? I'd be really curious to see if anything exists like that! Thank you.
0
votes
1answer
150 views

PHP output DataURI base64_encode

I want to take a local image, resize it and output the dataURI. Why is my base64_encode code not working? <?php // Create an image instance $imagearray = array('pop3', 'aboutme', 'passions', ...
1
vote
1answer
72 views

Does openlaszlo has a feature like data uri?

i want to know wheter open laszlo has data uri feature. The following example will show a red dot where the red dot is an image and base64 data is passed to it. Is it possible to do something like ...
1
vote
2answers
75 views

Is DataURI instead of images practical for APIs and webservices?

I am writing a javascript application which fetches data as JSON from a PHP based API. Currently images URLs are received from the API which are then used to display them using the <img> tag. ...
1
vote
1answer
585 views

Data URI file download in Interent Explorer

I have a web based application and was looking for a way for users to download their data from the websql tables. Someone suggested using data URI which seems to work in all browsers but Internet ...
0
votes
0answers
472 views

Exporting HTML data to Excel on Mac using URI

So I'm using data URIs to export HTML data to Excel, the problem is, it doesn't work on IE (which I'm fixing), and it doesn't work on Mac. It exports it to the raw HTML, which is obviously not what I ...
1
vote
0answers
251 views

Uploading images as Data URI using IE/Safari

Currently I have a drag-n-drop solution using jQuery and FileReader, which works with Chrome and Firefox. I use readAsDataURL to get a Data URI of the image to be uploaded, and then POST the data to ...

1 2 3