How to convert a PDF into JPG with commandline in linux?
问题 What are fast and reliable ways converting a PDF into a (single) JPEG using linux commandline? 回答1: You can try imagemagick repository and then convert utility: $ sudo apt-get install imagemagick $ convert input.pdf output.jpg And alternatively other syntax depends on linux distribution. 回答2: Convert from imagemagick seems do a good job: convert file.pdf test.jpg and in case multiple files were generated: convert test-0.jpg --append test-1.jpg ... --append one.jpg to generate a single file,