Unsere Freiwilligen haben diesen Artikel noch nicht in Deutsch übersetzt. Machen Sie mit und helfen Sie, das zu erledigen!
Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Deprecated since Gecko 7.0 (Firefox 7.0 / Thunderbird 7.0 / SeaMonkey 2.4)
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.
Summary
The getAsDataURL provides a data:
URL that encodes the entire contents of the referenced file.
Note: This method is obsolete; you should use the FileReader
method readAsDataURL()
instead.
Syntax
var url = instanceOfFile.getAsDataURL();
Returns
A string representing a data:
URL
Example
// fileInput is a HTMLInputElement: <input type="file" id="myfileinput" multiple> var fileInput = document.getElementById("myfileinput"); // files is a FileList object (similar to NodeList) var files = fileInput.files; // array with acceptable file types var accept = ["image/png"]; // img is a HTMLImgElement: <img id="myimg"> var img = document.getElementById("myimg"); // if we accept the first selected file type if (accept.indexOf(files[0].mediaType) > -1) { // display the image // same as <img src="data:image/png,<imagedata>"> img.src = files[0].getAsDataURL(); }
Specification
Not part of any specification.