58

I have multiple layers open in GIMP. I would like to export a pdf that has each layer on a new page.

Zanna
  • 72,312
Morgoth
  • 1,883
  • 2
  • 22
  • 29

3 Answers3

67

Gimp (2.10) does it already. No extra software or plugins needed.

  1. Import all images/pages as layers.
  2. Go to File → Export As → filename.pdf.
  3. After clicking Export As, a dialog will pop up asking to confirm save options. Select Layers as pages and Reverse the pages order.
  4. Click the Export button.

That's all! Enjoy.

mjoao
  • 671
44

GIMP (prior to 2.10) can't do this directly.

You need to use an intermediate file format.

Prerequisites

sudo apt-get install imagemagick

Steps

  1. Export from GIMP as an MNG animation: FileExportdocument.mng
  2. Convert to PDF on the terminal:

    convert -reverse document.mng document.pdf
    
Morgoth
  • 1,883
  • 2
  • 22
  • 29
1

There is a Gimp plugin that does this nicely.

http://registry.gimp.org/node/27987

The install path and how to change the permissions are covered in this blog post: https://www.zyxware.com/articles/4438/how-to-export-multiple-layers-from-gimp-into-a-pdf-file

Tully
  • 1,931
  • 1
  • 15
  • 11