StampPDF Batch Documentation
Complete reference for server-based PDF stamping -- text, images, Bates numbering, and more.
Overview
StampPDF Batch® is a server-based, command-line driven application that stamps new text and/or images into PDF documents. Any additions become permanent document content.
What You Can Do
- Add watermarks, page numbers, headers, and footers
- Control text attributes: font, style, size, RGB/CMYK color
- Position stamps: top, bottom, diagonal, vertical center
- Justify text: left, right, or center
- Layer stamps above or below existing content
- Select pages: every page, alternating, or custom intervals
- Set precise page margins for stamp placement
- Apply Bates numbering for legal documents
- Make stamps removable via undo labels
$stamppdfapp [options]. Code snippets appear in monospaced blocks. Items marked ADVISORY highlight important operational guidance.Installation
Memory Requirements
Minimum: 512 MB free memory.
Windows
Installation is handled by the standard installer. No special procedures required.
Unix -- Environment Variables
Version 5.1+ requires two additional environment variables for all UNIX platforms. If running via the provided stamppdf script, these are configured automatically. Direct stamppdfapp execution requires manual setup:
Default: /usr/local/appligent. Contains library files, resources, and license information.
export APPLIGENT_HOME=/usr/local/appligent
Must include ${APPLIGENT_HOME}/APDFLX.X.X/Libs
# Linux / Solaris / HP-UX
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${APPLIGENT_HOME}/APDFLX.X.X/Libs
# AIX only
export LIBPATH=${LIBPATH}:${APPLIGENT_HOME}/APDFLX.X.X/Libs
Registration Numbers
StampPDF Batch accepts registration from two sources:
- License file in
${APPLIGENT_HOME}/licensedirectory (created by the installation script) - Command-line
-roption (overrides the license file)
A valid license file eliminates the need for the -r flag on every invocation.
$stamppdfapp -r XXXX-XXXX-XXXX-XXXX-XXXX-XXXX [other options]
Using Fonts
Supported Types
- Base 14 (built-in PDF fonts)
- OpenType
- TrueType
- Type 1 (PostScript)
- Unicode / CJK fonts
Specifying Fonts
Version 5.2.2+: specify the font name only -- the FontFile parameter is deprecated. Discover available fonts with:
$ stamppdf -listfonts
Base 14 Font Substitution
Classic fonts (Times, Helvetica, Courier) are no longer shipped with the application. Automatic substitution occurs but appearance may differ. For exact rendering, place the original system fonts in your font directories.
Font Directories
| Platform | Default Path |
|---|---|
| Windows XP | C:\Documents and Settings\All Users\Application Data\Appligent |
| Windows Vista+ | C:\ProgramData\Appligent |
| Unix | /usr/local/appligent |
Fonts live under APDFLX.X.X/Resource/Font within the above directories.
AP_FONT_DIR environment variable to add custom font directories. On Windows, use semicolons to separate multiple paths. Fonts in AP_FONT_DIR appear alongside shipped fonts in -listfonts output.Quick Reference
stamppdf [options] <stamp file> <pdfdoc1> [<pdfdoc2> ...]
Core Options
-u <string>Remove old stamps by UndoLabel-j <int>Bates digit count (default: 6)-d <string>Owner password
Save Options
-iIncremental save-wLinearize for web-optimizeReduce file size-o <file>Output file/directory-overwriteOverwrite input file
Watched Folders
-watch <file>Base directory-watchin <file>Input folder-watchout <file>Output folder
Info & Debug
-listfontsShow available fonts-listundoList undo labels in PDF-l <file>Log file-pProgress messages-vVersion info
Stamp File Structure
A stamp file is a plain-text file with two main components:
- Options Block -- defines general properties for the entire document: stamp file version, page margins, and viewer settings.
- Stamp Items -- one or more blocks, each specifying parameters for a specific stamp. Unlimited quantity per file.
Version, Margins, ViewMode, OpenMode
Position, Font, Size, Text, Color...
Different position, font, content...
C:\Appligent\StampBatch\ (Windows) or your installation directory (other platforms). The examples below reference letterstamp.txt.Comments
Use # at the start of a line. Comments must be on their own line:
# This is a valid comment
Begin_Message # This is NOT valid -- comments must be on their own line
Parameter Format
Parameters use the syntax Parameter (value) with at least one space between the parameter name and the parenthesized value:
Position (Top)
Size (12)
Font (Helvetica Bold)
Options Block
The options block appears at the beginning of the stamp file and consists of three sections: Label, Positioning, and Viewer Options.
| Parameter | Required | Default | Description |
|---|---|---|---|
Begin_Options |
Opens the options block | ||
Version |
Yes | Must be 2 |
|
TopMargin |
12 pt | Space from page top to stamping area | |
BottomMargin |
12 pt | Space from page bottom to stamping area | |
LeftMargin |
8 pt | Space from left edge to stamping area | |
RightMargin |
8 pt | Space from right edge to stamping area | |
ViewMode |
Unchanged | Default zoom: ActualSize, FitHeight, FitPage, FitVisible, FitWidth | |
OpenMode |
Unchanged | Navigation: ShowBookMarks, ShowThumbNails, ShowNone | |
End_Options |
Closes the options block |
Inches to Points Conversion
1 inch = 72 points. A standard letter page (8.5 x 11 in) = 612 x 792 points.
| Inches | Points |
|---|---|
| 0.11 | 8 |
| 0.167 | 12 |
| 0.5 | 36 |
| 0.75 | 54 |
| 1.0 | 72 |
| 1.5 | 108 |
| 2.0 | 144 |
Page Boundary vs. Stamp Margins
Page boundary margins (in the options block) define the overall usable stamping area. Stamp margins (in individual stamp items) override the page boundary margins for that specific stamp. When a stamp item specifies its own margins, Position and Justification work relative to the stamp item's rectangle, not the options block margins.
Stamping
Area
Viewer Options
Sets the default zoom level when the document is opened. Values: ActualSize, FitHeight, FitPage, FitVisible, FitWidth. If omitted, the document retains its original setting.
Sets the default navigation pane. Values: ShowBookMarks, ShowThumbNails, ShowNone. If omitted, the document retains its original setting.
Sample Options Block
Begin_Options
Version (2)
TopMargin (36)
BottomMargin (36)
LeftMargin (36)
RightMargin (36)
ViewMode (FitPage)
OpenMode (ShowNone)
End_Options
Stamp Item Types
Every stamp item begins with Begin_Message and ends with End_Message. The Type parameter determines which kind of stamp is created:
- Text -- plain text content
- UTF8 / UTF16 -- Unicode characters (CJK)
- Image -- JPEG or TIFF images
- PDF -- embed a PDF page as a stamp
- Barcode -- Code 128 barcodes
Label Parameters
Identifies the stamp item. Useful for tracking multiple stamps in a single file.
Enables later removal of the stamp. Any string; case-sensitive. Avoid special characters (\ / : * ? " < > | ^ &).
To remove stamps: stamppdf -u undostamp Sample1.pdf
Specifies the stamp type: Text, UTF8, UTF16, Image, PDF, or Barcode.
Pagination Parameters
First page to stamp. Use -1 for the last page.
Last page to stamp. Use -1 to stamp through the end of the document.
Stamp every nth page. Examples: 2 = every other page, 5 = every fifth page.
| StartPage | PageIncrement | Stamps Pages |
|---|---|---|
| 1 | 1 | 1, 2, 3, 4, 5 ... |
| 1 | 2 | 1, 3, 5, 7, 9 ... |
| 2 | 2 | 2, 4, 6, 8, 10 ... |
| 1 | 5 | 1, 6, 11, 16, 21 ... |
| 5 | 5 | 5, 10, 15, 20, 25 ... |
Comma-separated list of specific pages. Overrides StartPage, EndPage, and PageIncrement.
PageRange (1,3,6,8)
Positioning Parameters
Stamp location on the page:
Top-- horizontal across page topBottom-- horizontal across page bottomDiag-BottomLeft-- diagonal, bottom-left originDiag-TopLeft-- diagonal, top-left originBottomUp-Left/BottomUp-Right-- vertical text upwardTopDown-Left/TopDown-Right-- vertical text downwardVCenter-- vertical center of pageAngle-- custom angle (requires Angle parameter)
Text alignment: Left, Right, or Center.
Rotation in degrees. Requires Position (Angle). Justification is always Left when using Angle.
Position (Angle)
Angle (45)
Yes = stamp below content; No = stamp on top.
TextMode (1) for outlined text or Opacity (0.5) for transparency.Custom margins (in points) that override the options block. Measured from the lower-left corner of the page.
Area
Page boundary: mediabox, cropbox, artbox, trimbox, or bleedbox.
Precise offset in points. Positive = right/up; negative = left/down. Added to the computed position.
# OffsetX example
Left (60)
OffsetX (36)
# Result: 60 + 36 = 96 points from left edge
# OffsetY example
BottomMargin (72)
OffsetY (-20)
# Result: 72 + (-20) = 52 points from bottom
Text Options
Font size in points. Fractional sizes allowed (e.g., 11.5). Reference: 10-12 pt for body text, ~128 pt for full-page watermarks.
Font name as shown by -listfonts. Supports OpenType, TrueType, Type 1, and Base 14 fonts.
Base 14 Fonts: Courier, Courier-Bold, Courier-Oblique, Courier-BoldOblique, Helvetica, Helvetica-Bold, Helvetica-Oblique, Helvetica-BoldOblique, Times-Roman, Times-Bold, Times-Italic, Times-BoldItalic, Symbol, Zapf Dingbats.
# Item 1 -- Helvetica
Font (Helvetica)
Text (The circumference of a circle is 2 r.)
# Item 2 -- Symbol (for the pi character)
Font (Symbol)
OffsetX (176)
Text ( p)
# Result: "The circumference of a circle is 2pir."
0 = solid, 1 = outlined, 3 = invisible (searchable but won't print).
The content to stamp. Supports variable substitution (see Variables tab).
Yes = long lines wrap at margins. ASCII only -- CJK requires MultiLine with manual breaks.
Adjust character/word spacing. Positive = more space; negative = less space. Up to 3 decimal places.
Line spacing multiplier. 2 = double-spaced. Values < 1 decrease spacing.
Color
DeviceGray, DeviceRGB, or DeviceCMYK. Sets the color model; actual color set with the parameters below.
0 = black, 100 = white. Example: Gray (50) for medium gray.
All three must be specified. Example:
ColorSpace (DeviceRGB)
Red (102)
Green (51)
Blue (204) # purple
All four must be specified. Example:
ColorSpace (DeviceCMYK)
Cyan (0.63)
Magenta (0.76)
Yellow (0)
Black (0) # purple
Additional Text Options
0 = transparent, 1 = fully opaque. Use 0.3 for a typical watermark effect.
Number of digits for Bates numbering with %J or %C variables. Overrides -j command-line option.
Associate a URL with the text stamp: LinkURL (http://www.example.com)
Percentage of the larger page dimension. Automatically fits stamps across different page sizes.
Sample Text Stamp
# -- Stamp Item --
Begin_Message
Name (Watermark)
Type (Text)
StartPage (1)
EndPage (-1)
PageIncrement (1)
Position (diag-topleft)
Justification (center)
Underlay (yes)
Size (84)
Font (Helvetica Bold)
TextMode (1)
Text (Confidential)
WordWrap (no)
Opacity (1)
Gray (50)
PageBox (CropBox)
UndoLabel (undoStamp)
End_Message
Using Variables in Stamps
Variables substitute dynamic, document-specific information into the Text parameter at runtime. They are preceded by the % character and are case-sensitive.
Text (This file was created on %a., %b. %d.)
# Result: "This file was created on Wed., Oct. 07."
% character, use %%. A missing % prefix will print the variable name literally.Variables Reference
| Variable | Description | Example Output |
|---|---|---|
%A |
Full weekday name | Friday |
%a |
Abbreviated weekday | Fri |
%B |
Full month name | October |
%b |
Abbreviated month | Oct |
%c |
Local date/time | Friday, October 03, 2003 7:36:24 PM |
%D |
Ordinal suffix | 1st, 2nd, 3rd, 4th |
%d |
Day of month | 15 |
%G |
Total page count | 30 |
%<page>g |
Page number | 1 |
%H |
Hour (00-23) | 13 |
%I |
Hour (01-12) | 01 |
%<field>i |
PDF info field | Jane Smith |
%<page>J |
Bates number (per file) | 000001 |
%<page>C |
Bates number (across files) | 000001 |
%j |
Day of year (001-366) | 099 |
%M |
Minutes (00-59) | 25 |
%m |
Month (1-12) | 10 |
%N |
Document filename | file.pdf |
%n |
New line | (line break) |
%P |
Full pathname | c:\MyDocuments\Stamp1.pdf |
%p |
AM/PM | PM |
%r |
Lowercase Roman numerals | xii |
%R |
Uppercase Roman numerals | XII |
%S |
Seconds (00-61) | 10 |
%U |
Week of year (Sunday start) | 36 |
%W |
Week of year (Monday start) | 36 |
%w |
Weekday number (0=Sun) | 5 |
%X |
Local time | 05:35:10 |
%x |
Local date | 10/03/03 |
%Y |
Year (4 digit) | 2003 |
%y |
Year (2 digit) | 03 |
%% |
Literal percent sign | % |
Stamping Page Numbers
Use %g for the current page number. Optionally prefix with a start number:
# Page number starting at 1 (default)
Text (%g)
# Start stamping at page 5, number = 5
StartPage (5)
Text (%g)
# Start stamping at page 5, but number it as 1
StartPage (5)
Text (%1g)
%<start>g when the body of your document follows introductory pages. For example, if pages 1-4 are front matter, use StartPage (5) with Text (%1g) to number the body starting at 1.Page X of Y
Text (Page %g of %G)
# Result: "Page 3 of 30"
Bates Numbering
Use %J for fixed-digit Bates numbers with leading zeros. Default is 6 digits.
# Default 6-digit Bates number
Text (%J)
# Page 2 -> 000002
# Start at number 501
Text (%501J)
# Page 1 -> 000501, Page 2 -> 000502
# With prefix
Text (CaseABCD %J)
# Page 1 -> CaseABCD 000001
# Custom digit count
BatesDigit (3)
Text (%J)
# Page 2 -> 002, Page 4145 -> 4145
Consecutive Bates Across Multiple Files
Use %C instead of %J to number consecutively across all files in a single batch run:
| File | Pages | Bates Range |
|---|---|---|
| Input001.pdf | 23 | 000001-000023 |
| Input002.pdf | 42 | 000024-000065 |
| Input003.pdf | 25 | 000066-000090 |
| Input004.pdf | 17 | 000091-000107 |
| Input005.pdf | 37 | 000108-000144 |
Multi-line Stamps
Use %n to insert line breaks:
Text (Appligent, Inc.%n22 East Baltimore Avenue%nLansdowne, PA 19050 USA)
# Result:
# Appligent, Inc.
# 22 East Baltimore Avenue
# Lansdowne, PA 19050 USA
22 East Baltimore Avenue
Lansdowne, PA 19050 USA
Document Properties
Stamp fields from File > Properties > Description using %i(FieldName):
Text (Title: %i(Title))
Text (Author: %i(Author))
Text (Subject: %i(Subject))
Text (Keywords: %i(Keywords))
Sample Stamp with Variables
Begin_Message
Name (Current Date)
Type (Text)
StartPage (1)
EndPage (-1)
PageIncrement (1)
Top (620)
Left (44)
Position (top)
Justification (left)
Underlay (no)
Size (12)
Font (Helvetica)
TextMode (0)
Text (%A %B %d, %Y)
WordWrap (No)
Gray (0)
Opacity (1)
UndoLabel (undoStamp)
End_Message
Image & PDF Page Stamps
StampPDF Batch can stamp JPEG images, TIFF images, or full PDF pages onto documents. Standard JPEG and Photoshop JPEG formats are both supported.
Image Stamp Parameters
Image stamps share the same label, pagination, and positioning parameters as text stamps, plus these image-specific options:
Set to Image for JPEG/TIFF stamps.
Full path to the image file (JPEG or TIFF).
Scale factor for the image. For example, Scale (0.5) reduces the image to half size.
Image Stamp Example
Begin_Message
Name (Company Logo)
Type (Image)
StartPage (1)
EndPage (1)
Position (Top)
Justification (Right)
Underlay (No)
Path (C:\Images\logo.jpg)
Scale (0.5)
UndoLabel (undoLogo)
End_Message
PDF Page Stamps
Stamp a page from one PDF onto another. All shared parameters (pagination, positioning, underlay) apply.
Set to PDF for PDF-to-PDF stamping.
Full path to the source PDF file.
Which page from the source PDF to use as the stamp. Defaults to page 1.
PDF Stamp Example
Begin_Message
Name (Letterhead)
Type (PDF)
StartPage (1)
EndPage (-1)
Position (Top)
Justification (Center)
Underlay (Yes)
Path (C:\Templates\letterhead.pdf)
PageNumber (1)
UndoLabel (undoLetterhead)
End_Message
Adding URLs to Image Stamps
To make an image stamp clickable, create two stamp items: the image stamp first, then a text stamp with LinkURL in the same position:
# Item 1: Image stamp
Begin_Message
Type (Image)
Path (C:\Images\banner.jpg)
Position (Top)
Justification (Center)
End_Message
# Item 2: Clickable link overlay
Begin_Message
Type (Text)
Text ( )
Position (Top)
Justification (Center)
LinkURL (http://www.example.com)
TextMode (3)
End_Message
Complete Command-Line Options
| Option | Parameter | Description |
|---|---|---|
-r |
<RegNum> | Registration number |
-l |
<logFile> | Write to log file |
-p |
Show progress messages on STDOUT | |
-n |
Suppress all screen output | |
-v |
Display version (no other operations run) | |
-h / -help |
Display usage information (no other operations run) | |
-o |
<outFile> | Output file or directory |
-overwrite |
Overwrite the input file | |
-d |
<string> | Owner password for encrypted PDFs |
-u |
<string> | Remove stamps with this UndoLabel (repeatable) |
-j |
<int> | Bates number digit count (default: 6) |
-w |
Linearize for web delivery | |
-i |
Incremental save (faster, may be larger) | |
-optimize |
Reduce file size (Flate compression, merge XObjects, etc.) | |
-nocomp |
Disable Object Stream compression | |
-comp |
Enable Object Stream compression (Acrobat 6+) | |
-iso32000 |
PDF 1.7 (ISO 32000-1) compliance | |
-pdfa |
Preserve PDF/A compatibility | |
-sameversion |
Match output PDF version to input | |
-arabicfixedlength |
Maintain Arabic text length | |
-listfonts |
List available fonts | |
-listundo |
List undo labels in PDF | |
-vars |
"name,val,..." | Variable substitution list |
-vardelimiter |
<char> | Variable delimiter (default: %) |
-cmds |
<file> | Command collections file |
-watch |
<dir> | Watched folder base directory |
-watchin |
<dir> | Watched folder input |
-watchout |
<dir> | Watched folder output |
Logging Behavior
The interaction between -l (log file) and -p (progress) flags:
| -l Flag | -p Flag | Errors? | Result |
|---|---|---|---|
| No | No | No | Nothing to screen or log |
| No | No | Yes | Errors to screen; stamppdf.log in working directory |
| Yes | No | No | Nothing written |
| Yes | No | Yes | Errors to specified log file |
| No | Yes | No | Progress to screen |
| No | Yes | Yes | Progress + errors to screen; stamppdf.log |
| Yes | Yes | No | Progress to screen and log file |
| Yes | Yes | Yes | Progress + errors to screen and log file |
-l logfile.txt -p together for the most complete diagnostic output regardless of whether errors occur.Optimization Details
The -optimize flag performs these operations:
- Encodes non-encoded streams with Flate compression
- Removes ASCII85 filters from streams
- Replaces LZW with Flate encoding
- Merges identical XObjects and images
- Optimizes page content sequences
- Merges identical font descriptors and encodings
Encryption Options
Enable encryption with the -encrypt flag, then configure with these options:
| Option | Description |
|---|---|
-encrypt |
Enable encryption |
-keylength <int> |
40 or 128 bits (default: 128) |
-ownerpass <string> |
Owner password (required) |
-userpass <string> |
User password |
-noprint |
Disable printing |
-nomodify |
Disable modifications |
-nocopy |
Disable text/graphics copying |
-nonotes |
Disable notes/form field changes |
-nofill |
Disable form field operations |
-noaccess |
Disable accessibility extraction |
-noassembly |
Disable document assembly |
-nohighres |
Disable high-resolution printing |
# Example: Encrypt with 128-bit key, allow printing only
stamppdf -encrypt -keylength 128 \
-ownerpass "s3cret" -userpass "read" \
-nomodify -nocopy -nonotes \
stamp.txt input.pdf -o output.pdf
Unicode Text Stamping
StampPDF Batch supports CJK (Chinese, Japanese, Korean) characters using UTF-8 or UTF-16 encoding.
UTF-8 Method
Enter Asian characters directly in the Text parameter. Set Type (UTF8) and specify the appropriate encoding:
| Language | Encoding Value |
|---|---|
| Non-CJK | UTF8 |
| Japanese | UniJIS-UTF16-H |
| Korean | UniKS-UTF16-H |
| Simplified Chinese | UniGB-UTF16-H |
| Traditional Chinese | UniCNS-UTF16-H |
Type (UTF8)
Font (KozMinPr6N-Regular)
Encoding (UniJIS-UTF16-H)
Text (Japanese characters here)
UTF-16 Method
Enter characters as big-endian hexadecimal. Four hex digits per character, no spaces or prefixes:
Type (UTF16)
Font (KozGoPr6N-Medium)
Encoding (UniJIS-UTF16-H)
Text (51855BC6306E)
Multi-line Unicode
Set MultiLine (yes). Use \r for line breaks in UTF-8, or Unicode 2028 in UTF-16:
# UTF-8 multi-line
MultiLine (yes)
Text (First line\rSecond line)
# UTF-16 multi-line (2028 = line separator)
MultiLine (yes)
Text (51855BC6306E202851855BC6306E)
複数行のテスト
Shipped Fonts
The following fonts ship with StampPDF Batch (version 5.2+):
AdobeArabic-BoldItalic
AdobeArabic-Italic
AdobeArabic-Regular
AdobeFanHeitiStd-Bold
AdobeGothicStd-Bold
AdobeHebrew-Bold
AdobeHebrew-BoldItalic
AdobeHebrew-Italic
AdobeHebrew-Regular
AdobeHeitiStd-Regular
AdobeMingStd-Light
AdobeMyungjoStd-Medium
AdobePiStd
AdobeSongStd-Light
AdobeThai-Bold
AdobeThai-BoldItalic
AdobeThai-Italic
AdobeThai-Regular
CourierStd
CourierStd-Bold
CourierStd-BoldOblique
CourierStd-Oblique
Dingbats
KozGoPr6N-Medium
KozMinPr6N-Regular
MinionPro-Regular
MyriadPro-Regular
Symbol
Legacy CJK Fonts (5.1 and earlier)
| StampPDF Batch Name | Acrobat Display Name |
|---|---|
HeiseiKakuGo-W5 |
Heisei Kakugo |
HeiseiMin-W3 |
Heisei Mincho |
HYGoThic-Medium |
HYGoThic Medium |
HYSMyeongJo-Medium |
HYSMyeongJo Medium |
MHei-Medium |
MHei-Medium |
MSung-Light |
MSung Light |
STSong-Light |
STSong Light |
Complete Stamp Parameters
| Parameter | Text | Image | Default | |
|---|---|---|---|---|
Begin_Message |
✓ | ✓ | ✓ | |
Name |
✓ | ✓ | ✓ | |
UndoLabel |
✓ | ✓ | ✓ | |
Type |
✓ | ✓ | ✓ | |
StartPage |
✓ | ✓ | ✓ | 1 |
EndPage |
✓ | ✓ | ✓ | -1 |
PageIncrement |
✓ | ✓ | ✓ | 1 |
PageRange |
✓ | ✓ | ✓ | all |
Position |
✓ | ✓ | ✓ | Top |
Justification |
✓ | ✓ | ✓ | Center |
Underlay |
✓ | ✓ | ✓ | No |
PageBox |
✓ | ✓ | ✓ | Cropbox |
OffsetX |
✓ | ✓ | ✓ | |
OffsetY |
✓ | ✓ | ✓ | |
Top / Bottom / Left / Right |
✓ | ✓ | Options block | |
Angle |
✓ | 0 | ||
Size |
✓ | 12 | ||
Font |
✓ | Helvetica-Bold | ||
TextMode |
✓ | 0 | ||
Text |
✓ | |||
WordWrap |
✓ | No | ||
CharSpace / WordSpace |
✓ | 0 | ||
LineSpace |
✓ | 1 | ||
ColorSpace |
✓ | DeviceGray | ||
Gray |
✓ | 0 | ||
Red / Green / Blue |
✓ | 0,0,0 | ||
Cyan / Magenta / Yellow / Black |
✓ | 1,1,1,1 | ||
BatesDigit |
✓ | 0 | ||
Opacity |
✓ | 1 | ||
LinkURL |
✓ | |||
AutoScale |
✓ | |||
Path |
✓ | ✓ | ||
Scale |
✓ | |||
PageNumber |
✓ | |||
End_Message |
✓ | ✓ | ✓ |
