Changelog
- 2025-03-03
- Add Krita method & Note quirk with Sketchbook
- 2023-02-17
- Initial creation
Using Sketchbook
I’ve not found a good way to use just Sketchbook for converting coloring pages from PDF. I’ve found Krita ‘just works’ for converting PDF to coloring pages. You can export files from Krita using the Photoshop (psd) format to retain the layers when opening in Sketchbook. Basicaly use Krita to convert the pages to Photoshop (psd) and then open the Photoshop (psd) file in Sketchbook.
Using Krita
Krita can import PDF files and create a layer for each page of a PDF. This can be especially helpful when buying digital coloring pages. The below procedure can be used to convert a PDF of coloring pages (one or more pages) to individual Krita files that can be used to color digitally. This page only shows the PDF conversion, see the Digital Coloring post for more details on how to setup a Krita document for coloring.
Conversion
- Open the PDF with Krita
- Select which pages to import as layers when prompted
- Cut a single layer to remove it from the current drawing placing it on the clipboard
- Create a new file from clipboard
- Set the color profile as appropriate if prompted
- Setup the new file as a coloring page
Screen shots
The ‘Hard’ Way
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
- The
pdfimages
will get you a dpi listing for each page in the PDF that has an image, use that value instead of300
in the below, if it is present. - The
-type Grayscale
parameter can be removed if you need color output. You probably want color output if you plan to color the converted page with actual color.
Conversion
- Install
imagemagick
pdfimages -list shipspage1.pdf
for file in `ls *.pdf`; do convert -density 300 -type Grayscale ${file} ${file}.png; done
Resources
- how-to-get-dpi-of-a-pdf-file
- convert_pdf_to_image_imagemagick
- convert-pdf-to-png-using-imagemagic
- imagemagick.org discourse topic