I only found JavaScript code for doing this through browser console.
For example if I copy image address from the first images from Google images search results grid I get a Data URL.
Commands that I tried and errors:
$ curl 'data:stuff' -o filename curl: (3) URL using bad/illegal format or missing URL
$ curl 'data:stuff' > filename curl: (3) URL using bad/illegal format or missing URL
$ wget 'data:stuff' -O filename Resolving data (data)... failed: Name or service not known. wget: unable to resolve host address ‘data’
How can I download Data URL through command line?

