Top "Data-url" 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.

Loading image src using a variable containing base64 data in AngularJS

Loading image using variable containing base64 data in AngularJS I am trying to find the right way to load a …

image angularjs base64 loading data-url
Data URI scheme and Internet Explorer 9 Errors

I'm having a problem using the RFC 2397 data url scheme with IE versions 6-9. My sample code below works without …

internet-explorer protocols rfc data-url
Force download of 'data:text/plain' URL

I was wondering whether it is possible to force a browser (at least Chrome) to download a data:text/plain …

file text download content-disposition data-url
Trying to save canvas PNG data url to disk with HTML5 filesystem, but when I retrieve as URL, it's invalid

I get the base64-encoded image form the canvas as: var dataURL = canvas.toDataURL( "image/png" ); Then I turn it …

javascript html google-chrome html5-canvas data-url
canvas.toDataURL() not working properly

I am having a canvas in which I upload an image with the following code: function handleImage(e){ var reader = …

javascript html canvas data-url
Canvas toDataUrl increases file size of image

When using toDataUrl() to set the source of an image tag I am finding that the image when saved is …

javascript canvas data-url
Convert Data-URL to BufferedImage

I have a Data-URL from an image file and have to pass it through to another function. Along this path …

java bufferedimage javax.imageio data-url
iPhone Open DATA: Url In Safari

I have a Data: URL (see: http://en.wikipedia.org/wiki/Data_URI_scheme) (as a NSString) and I want …

iphone url safari data-url
how to detect the MIME type of data URL

I'm developing an angular 4 application. I have a base64 encoded image. I'm saving it in the file system with node.…

javascript base64 data-url
Downloading file from DataURL in JavaScript

From this string we get from DataURL, what's the best way to download this as a file? So far what …

javascript filewriter data-url