Convert pdf file to jpeg – with imagemagic

Short article just to write down not-so frequently (for me) task:

  • for MacOS, install imagemagic: brew install imagemagick, when using other OS just install imagemagic with your package manager
  • Create directory and copy/move file you want to convert
  • change directory to the new one
  • Run command (macOS):
/opt/homebrew/bin/magick convert -density 300 fileToConvert.pdf -quality 100 'fileToConvert_%03d.jpg'

remove /opt/homebrew/bin from that command where using on other system than macOs

Options:

  • density — resolution (300 dpi for high-quality images)
  • quality 100 — set the jpeg quality, where 100 means 100% (no size reduction)
  • fileToConvert_%03d.jpg — output file will be numbered, starting at 001

cheers

No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Linux
podcast

All podcast applications I have tested were quite OK(ish) – but I have always struggled with organizing podcasts, creating playlists, etc. It has always been challenging. Therefore, for me, it is more convenient to download podcasts as MP3s and manage them myself (in VLC, for example). There are many ways to do that, but my favorite …

Linux
jellyfin configuration in lxc container

Jellyfin is extremely useful software providing home streaming system. I am using it since a while for streaming my old ripped DVD, which I love to watch again and again. Jellyfin is opensource, cross platform as a server and as a client, including client for android and iOS. It is …

Uncategorized
Linux administration, few interesting tips

Change user id (uid) and group id (gid) for specific user