Home > Software engineering >  Batch PDF Watermark [PDF -> JPG -> PDF]
Batch PDF Watermark [PDF -> JPG -> PDF]

Time:05-10

I am working with over thousands PDF files for a Sheet Music publisher.

All of these PDF files needs a preview PDF. A watermark for PDF files can easily be removed so I am asking for a true way to watermark our PDF:s in a batch operation.

PDF->Apply Watermark->JPG->Back to PDF

How can I do this? Is there a good tool for this operations?

CodePudding user response:

The free route

ImageMagick can do the complete process for you, especially with the composite command's enter image description here

You can check this good post and its answers for a number of options for converting a PDF to an image, enter image description here

Some more tiling Magick

I used this enter image description here

CodePudding user response:

And here it is unwatermarked again enter image description here

  • Related