Is there any size limitation for \"data:\" URL scheme
values? I\'m interested in limitations in popular web browsers. In other words, how long can data:image/jpg;base6
There are a lot of answers. As the question was asked 5+ years ago, most are now incorrect due to becoming dated, yet this question sits at the top of Google results for "data uri limit". Data URIs are now widely supported and IE 7/8 is no longer a relevant browser. There are many references below because the answer is nuanced today.
The data URI spec does not define a size limit but says applications may impose their own.
total_physical_memory / 5 (source).One technology with a higher limit (500MiB in Chrome) that may be an alternative for your use case is Blob URLs via URL.createObjectURL() using the URL API together with blobs via the File API. An example of that is provided in Using URL.createObjectURL().
A few other alternatives as mentioned in How to write a file / give it to the user are: FileSaver.js, StreamSaver.js, and JSZip.
You can use Modernizr to detect support for data URIs over 32kb.
These answers are pretty much the same as this question, but I mention them to save you the time of reading each one.