Skip to content

Instantly share code, notes, and snippets.

@leibovic
Created September 28, 2015 21:58
Show Gist options
  • Save leibovic/812cdd04c62999ddb1f6 to your computer and use it in GitHub Desktop.
Save leibovic/812cdd04c62999ddb1f6 to your computer and use it in GitHub Desktop.
png to data URI
echo -n `cat file.png` | base64 > output.txt
openssl base64 < file.png | tr -d '\n' > output.txt
cat file.png | openssl base64 | tr -d '\n' > output.txt
openssl base64 -in file.png -out output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment