pdfcpu

Logo

A PDF processor written in Go.

View the Project on GitHub pdfcpu/pdfcpu


Changelog

Stamp

Add stamps to selected pages of inFile. Have a look at some examples.

Stamps may be stacked on top of each other. This allows for producing more complex page stamps - a mixture of text, images and foreign PDF page content. Using description you can configure various aspects like position, offset, rotation, scaling and opacity. For text based stamps you can also configure font name, font size, fill color and render mode.

Usage

pdfcpu stamp add    [-p(ages) selectedPages] -m(ode) text|image|pdf -- string|file description inFile [outFile]
pdfcpu stamp update [-p(ages) selectedPages] -m(ode) text|image|pdf -- string|file description inFile [outFile]
pdfcpu stamp remove [-p(ages) selectedPages] inFile [outFile]



NOTE
In the Adobe world a watermark is text or an image that appears either in front of or behind existing document content, unlike a stamp comment aka stamp annotation that anybody reading the PDF can open, edit, move around and delete. The difference here is that a watermark is integrated into a PDF page as a fixed element. Within pdfcpu the meaning of these terms is slightly different:

where content may be text, an image or a PDF page.



Flags

flag description required
p(ages) selected pages no
m(ode) text, image or pdf yes


Common Flags

name description values
v(erbose) turn on logging  
vv verbose logging  
q(uiet) quiet mode  
u(nit) display unit po(ints),in(ches),cm,mm
c(onf) config dir $path, disable
upw user password  
opw owner password  


Arguments

name description required
string display string for text stamps
file file name for image or pdf stamps
description configuration string yes
inFile PDF input file yes
outFile PDF output file no


Special note for text stamps:

Use the following format strings:

$ pdfcpu stamp add -mode text "Page %p of %P" -- "scale:1.0 abs, pos:bc, rot:0" in.pdf out.pdf


Special note for PDF stamps:

If you want to use a specific page as your stamp, specify the page number after the stamp file and use ‘:’ as separator:

$ pdfcpu stamp add -mode pdf -- "stamp.pdf:1" "" in.pdf out.pdf


You can also apply a multistamp. This means you repeatedly apply stamp.pdf’s pages to stamp pages of in.pdf in an orderly fashion. If in.pdf has more pages than stamp.pdf, the last page of stamp.pdf gets applied for the remaining pages. Omit the stamp page number for multi stamping:

$ pdfcpu stamp add -mode pdf -- "stamp.pdf" "" in.pdf out.pdf


You can also customize your multistamp. If you want to start multistamping at page 2 of your stamp file and page 3 of your input file you can do the following:

$ pdfcpu stamp add -mode pdf -- "stamp.pdf:2:3" "" in.pdf out.pdf


Description

A configuration string to specify the stamp parameters.

You may use parameter prefixes as long as the parameter can be identified. eg. o: .7 is ambiguous because there is opacity and offset but op: .7 will do the job.

parameter description values default
fontname a basefont Please refer to pdfcpu fonts list Helvetica
scriptname ISO-15924 code Hans, Hant, Hira, Kana, Jpan, Hang, Kore  
points fontsize in points in combination with absolute scaling only 24
rtl right to left userfont on/off, true/false, t/f off
position the stamps lower left corner anchors: tl, tc, tr, l, c, r, bl, bc, br c
offset (dx,dy) float vals in user units eg. ‘15 20’ or ‘15.0 20.0’ 0 0
scalefactor   0.0 < i <= 1.0 followed by optional abs or rel 0.5 rel
aligntext horizontal text alignment l..left, c..center, r..right, j..justified c
strokecolor for rendering text (see mode) color 0.5, 0.5, 0.5 = gray
fillcolor, color for rendering text (see mode) color 0.5, 0.5, 0.5 = gray
backgroundcolor bounding box background color  
rotation rotation angle -180.0 <= i <= 180.0 0.0
diagonal render along diagonal 1 .. lower left to upper right 1
    2 .. upper left to lower right  
opacity   0.0 <= i <= 1.0 1
mode, rendermode apply fill color 0 .. fill 0
  apply stroke color 1 .. stroke  
  apply both fill & stroke color 2 .. fill & stroke  
margins bounding box margins for text i .. set all four margins 0
  requires bgcolor i j .. set t/b margins to i, set l/r margins to j  
    i j k .. set top to i, left/right to j, bot to k  
    i j k l .. set top, right, bottom, left margins  
border bounding box border for text i {round} {color} 0
  requires bccolor i .. border width > 0  
    round .. set round bounding box corners  
    color .. border color  
url add link annotation Omit https://  

Only one of rotation and diagonal is allowed.

The following description parameters are for text based stamps only:


Anchors for positioning

       
  left center right
top tl tc tr
  l c r
bottom bl bc br


Default description

'f:Helvetica, points:24, rtl:off, scale:0.5 rel, pos:c, off:0 0, align:c, fillc:#808080, strokec:#808080, rot:0, d:1, op:1, mo:0, ma:0, bo:0'

The default stamp configuration is:

In addition for text based stamps:

You only have to specify parameters that differ from the default.


Examples

Text Based Stamps

Create a stamp using defaults only:

$ pdfcpu stamp add -mode text -- "This is a stamp" "" in.pdf out.pdf


Create a stamp using scale factor 1:

$ pdfcpu stamp add -mode text -- "This is a stamp" "scale:1" in.pdf out.pdf

       


Create a stamp along the second diagonale using scale factor 0.9, default render mode fill and a fill color:

$ pdfcpu stamp add -mode text -- "This is a stamp" "scale:.9, d:2, c:.6 .2 .9 in.pdf out.pdf


Create a stamp with 0 degree rotation using scale factor 0.9 and render mode stroke:

$ pdfcpu stamp add -mode text -- "This is a stamp" "scale:.9, rot:0, mo:1" in.pdf out.pdf


Create a stamp with a counterclockwise rotation of 45 degrees using scale factor 1, render mode fill & stroke and a fill color:

$ pdfcpu stamp add -mode text -- "This is a stamp" "scale:1, rot:45, mode:2, color:.2 .7 .9" in.pdf out.pdf


Create a stamp of some multi line text, show its bounding box by setting bgcol, set all margins to 5 and a border width of 7 rendering round corners.

$ pdfcpu stamp add -mode text -- "Some multi\nline text" "ma:5, bo:7 round .3 .7 .7, fillc:#3277d3, bgcol:#beded9, rot:0" in.pdf out.pdf


Create a stamp with default rotation, using scale factor 1, font size 48, default render mode fill, a fill color and increasing opacity from 0.3 to 1. By setting an opacity < 1 you can fake a watermark. This may be useful in scenarios where pdfcpu watermark does not produce satisfying results for a particular PDF file:

$ pdfcpu stamp add -mode text -- "Draft" "points:48, scale:1, fillc:.8 .8 .4, op:.3" in1.pdf out1.pdf
$ pdfcpu stamp add -mode text -- "Draft" "points:48, scale:1, fillc:.8 .8 .4, op:0.6" in2.pdf out2.pdf
$ pdfcpu stamp add -mode text -- "Draft" "points:48, scale:1, fillc:.8 .8 .4, op:1" in3.pdf out3.pdf

   


Image Based Stamps

Create a stamp using defaults only:

$ pdfcpu stamp add -mode image -- "pic.jpg" "" in.pdf out.pdf


Create a stamp using 0 degree rotation and relative scaling of 1.0:

$ pdfcpu stamp add -mode image -- "pic.jpg" "scalef:1 rel, rot:0" in.pdf out.pdf


PDF Based Stamps

Create a stamp using defaults only. This will apply page 1 of some.pdf:

$ pdfcpu stamp add -mode pdf -- "some.pdf:1" "" in.pdf out.pdf


Create a multi stamp using stamp.pdf, apply a 0 degree rotation and 0.3 relative scaling.

Page 1 of in.pdf gets stamped with page 1 of stamp.pdf, page 2 of in.pdf gets stamped with page 2 of stamp.pdf and so forth.

$ pdfcpu stamp add -mode pdf -- "stamp.pdf" "rot:0, scale:.3 rel" in.pdf out.pdf


Stamp Lifecycle

Create a stamp using the default options.

$ pdfcpu stamp add -mode text -- "Draft" "" template.pdf work.pdf


Let’s edit the stamps color, render mode and opacity

$ pdfcpu stamp update -mode text -- "Draft" "c: .2 .6 .5, rendermode:2, op:.7" work.pdf


We add a centered footer on the bottom of the page.

$ pdfcpu stamp add -mode text -- "Footer" "pos:bc, scale: 1.0 abs, rot:0, c: .5 .5 .9" work.pdf


Let’s add a logo in the top right corner.

$ pdfcpu stamp add -mode image -- "logo.png" "pos:tr, rot:0, scale:.2" work.pdf


Let’s get rid of the stamp on page 1

$ pdfcpu stamp remove -pages 1 work.pdf

Finally let’s remove all stamps of this file.

$ pdfcpu stamp remove work.pdf


Userfonts

Let’s create a Unicode text stamp using a user font:

  1. Choose your favorite TrueType font or collection.
  2. Follow the instructions to install the font you would like to use.


Left-to-right, Simple Chinese

$ pdfcpu stamp add -mode text "这是一个测试" "fo:SimSun" in.pdf out.pdf
writing out.pdf...
pages: all

TODO: Explain avoiding font embedding for CJK fonts by configuring scriptname

Right-to-left, Arabic

$ pdfcpu stamp add -mode text "هذا اختبار" "rtl:true, fo:UnifontMedium" in.pdf out.pdf
writing out.pdf...
pages: all