Skip to content

Instantly share code, notes, and snippets.

@c51303
Last active August 16, 2023 10:11
Show Gist options
  • Save c51303/32929851969d856728c684729d808449 to your computer and use it in GitHub Desktop.
Save c51303/32929851969d856728c684729d808449 to your computer and use it in GitHub Desktop.
PDF文件转换图片

pdftoppm

sudo apt install poppler-utils
pdftoppm -jpeg filename.pdf filename.jpg

imagemagick

sudo apt install imagemagick
convert -resize 1000x1000 -quality 60% filename.jpg filename.q60.jpg

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment