Skip to content

Instantly share code, notes, and snippets.

@emceeaich
Forked from vadimkantorov/image2urijpeg.sh
Created March 10, 2023 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emceeaich/3bf58c3ecdad79c3b93eaa587bab972d to your computer and use it in GitHub Desktop.
Save emceeaich/3bf58c3ecdad79c3b93eaa587bab972d to your computer and use it in GitHub Desktop.
Convert an image to Base64 data-uri format using ImageMagick and OpenSSL
# Usage:
# bash image2urijpeg.sh image.jpg 320x240 > base64.txt # will resize before conversion
# bash image2urijpeg.sh image.jpg > base64.txt # will keep original size
magick "$1" -resize ${2:--} jpeg:- | openssl enc -base64 -A | sed -e 's/^/data:image\/jpeg;base64,/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment