Skip to content

Instantly share code, notes, and snippets.

@kaxing
Last active November 28, 2019 18:19
Show Gist options
  • Save kaxing/df61d30e741b7f63312e6c3a38417566 to your computer and use it in GitHub Desktop.
Save kaxing/df61d30e741b7f63312e6c3a38417566 to your computer and use it in GitHub Desktop.
Converting stuff on macOS
Covert PDF to PNG
Requirement: brew install imagemagick ghostscript
Possible mapping problems:
- convert: no images defined 'mypic.png' @error/convert.c/ConvertImageCommand/3254.
- convert: profile 'icc': 'RGB ': RGB color space not permitted on grayscale PNG `PointOnLine.png' @ warning/png.c/MagickPNGWarningHandler/1744.
Resolutions:
$ convert -define profile:skip=ICC -density 300 ./input.pdf output.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment