Go to file
2022-11-29 20:03:35 +01:00
app fix: missing favicon 2022-11-29 19:35:00 +01:00
pdftk feat: pdf watermark Web app 2022-11-29 19:25:37 +01:00
Dockerfile feat: pdf watermark Web app 2022-11-29 19:25:37 +01:00
LICENSE feat: pdf watermark Web app 2022-11-29 19:25:37 +01:00
mini-httpd.conf feat: pdf watermark Web app 2022-11-29 19:25:37 +01:00
README.md feat: pdf watermark Web app 2022-11-29 19:25:37 +01:00
watermark-pdf.sh fix: font size is too large 2022-11-29 20:03:35 +01:00

watermark-pdf

This repository hosts a simple PDF watermarking Web application.

The application is made of a static HTML page that POSTs to a bash CGI script.

The Web server is mini_httpd.

The POST arguments parsing is made through cgibashopts.

The watermarking itself depends on:

  • imagemagick
  • pdftk
  • other common dependencies (see Dockerfile for details)

Run your own

You can run the image I built:

docker run --rm -t -p 8080:80 pipoprods/watermark-pdf

Build and run your own

You can build your own image and run it:

docker build . -t watermark-pdf
docker run --rm -t -p 8080:80 watermark-pdf