Skip to content

Instantly share code, notes, and snippets.

@hubgit
Last active March 24, 2020 11:52
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 hubgit/f973e44b394cc28ca87910bbce9d24dc to your computer and use it in GitHub Desktop.
Save hubgit/f973e44b394cc28ca87910bbce9d24dc to your computer and use it in GitHub Desktop.
Batch convert EMF to PNG with Inkscape
export INKSCAPE=/Applications/Inkscape.app/Contents/MacOS/inkscape
# ${INKSCAPE} --help
for i in *.emf; do "${INKSCAPE}" --without-gui --export-file="${i}.png" --export-dpi=72 "${i}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment