Jump to ToC  | Jump to tags  | Jump to related pages

Converting PDF Coloring Pages

By: KemoNine

Reading Time: 1 minutes  |  Word Count: 95 words

Published:

Tags: art

Related Pages: Digital Art Composition Book Convert Photo to Coloring Page Digital Coloring and Drawing Krita Color Palettes Zentangle Template Images

Table of Contents

Required Program

If you have access to imagemagick you can quickly convert a PDF coloring page(s) to grayscale PNG using the below procedure and notes.


Notes


Conversion

  1. Install imagemagick
  2. pdfimages -list shipspage1.pdf
  3. for file in `ls *.pdf`; do convert -density 300 -type Grayscale ${file} ${file}.png; done

External Resources