I am developing an application that requires editing an image by converting it into a canvas an the save the changes as an Image. So my doubt is that, can this Data URL be passed along the application and save to local storage of the browser to be produced back as an image when the application is loaded ??
Can Data URL value be passed and stored in Local storage for later use?
617 Views Asked by Hemantsom At
1
There are 1 best solutions below
Related Questions in DATA-URI
- Can we add some additional information in a file?
- How to convert a MultiPartFile (image) to a data URI?
- data-url with x-x509-user-cert does not work
- Can I to make svg icon using data-uri with built-in data for the properties of the background?
- Firefox inserts escape characters in SVG — XML declaration not well-formed
- Why would you use link tags with a data/css HREF instead of using a style tag?
- How to send a large datauri of an image to express server
- Adding HTML5 audio as embedded mp3 data URI
- Is there any way to suggest a file name with a data URI?
- Upload image with datauri as source empty on ajax post call
- Data URI's slow down page
- Save datastream received as unit8array as pdf to filesystem on the front end
- What to use instead of dontReplace for constructing a data URI?
- iPhone - Data URI's (css background images) only work when connected to WIFI
- Force Save As box in Chrome / Safari when clicking on a Data URI anchor link
Related Questions in DATA-URL
- Canvas DataURL to image with filePath
- Pass an image to a canvas with dataurl
- canvas.toDataURL() not working properly
- Redirect data:text/html with htaccess
- Issue Setting ngImgCrop to Image URL
- Security error" code: "1000 on Firefox with Canvas.toDataURL
- Passing computed SVG as a data URI to a SRC attribute
- How to trigger a download from DataURL in IE
- Convert Data-URL to BufferedImage
- How to use Data URI to copy canvas as image or another canvas
- Decoding PNG DataURL urlopen vs base64decode
- Downloading file from DataURL in JavaScript
- "data-url" jQuery Mobile confusing
- dataUrl in edit option does not work in JqGrid when using to refresh the select box
- how to manually set the data-url on a Jquery Mobile page which has an id attribute specified?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, why not.
Only problem is that canvas creates very large filesizes and local storage has a size limit. For production keep limit the use of local storage to 2,5mb. That should cover most browsers.
A better solution would be to post the data url to a server and retrieve it later.
Check it out yourself, compare filesize of your canvas created png to the filesize of optimized png's data url