Home/ Documentation/ StampPDF Batch Documentation

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
Note: Command-line input is shown as $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:

APPLIGENT_HOME-- required

Default: /usr/local/appligent. Contains library files, resources, and license information.

export APPLIGENT_HOME=/usr/local/appligent
LD_LIBRARY_PATH-- required (LIBPATH on AIX)

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:

  1. License file in ${APPLIGENT_HOME}/license directory (created by the installation script)
  2. Command-line -r option (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.

Tip: Set the 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

  • -i Incremental save
  • -w Linearize for web
  • -optimize Reduce file size
  • -o <file> Output file/directory
  • -overwrite Overwrite input file

Watched Folders

  • -watch <file> Base directory
  • -watchin <file> Input folder
  • -watchout <file> Output folder

Info & Debug

  • -listfonts Show available fonts
  • -listundo List undo labels in PDF
  • -l <file> Log file
  • -p Progress messages
  • -v Version info

Stamp File Structure

A stamp file is a plain-text file with two main components:

  1. Options Block -- defines general properties for the entire document: stamp file version, page margins, and viewer settings.
  2. Stamp Items -- one or more blocks, each specifying parameters for a specific stamp. Unlimited quantity per file.
Options Block
Begin_Options ... End_Options
Version, Margins, ViewMode, OpenMode
Stamp Item 1
Begin_Message ... End_Message
Position, Font, Size, Text, Color...
Stamp Item 2
Begin_Message ... End_Message
Different position, font, content...
...
Stamp Item N
Unlimited stamp items per file
Stamp file structure: Options Block followed by one or more Stamp Items.
Note: Sample files are installed in 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.

 
TopMargin (12pt)
BottomMargin (12pt)
LeftMargin (8pt)
RightMargin (8pt)
Usable
Stamping
Area
Page Edge
Page boundary margins define the usable stamping area.

Viewer Options

ViewMode-- optional

Sets the default zoom level when the document is opened. Values: ActualSize, FitHeight, FitPage, FitVisible, FitWidth. If omitted, the document retains its original setting.

OpenMode-- optional

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

Name-- optional

Identifies the stamp item. Useful for tracking multiple stamps in a single file.

UndoLabel-- optional

Enables later removal of the stamp. Any string; case-sensitive. Avoid special characters (\ / : * ? " < > | ^ &).

To remove stamps: stamppdf -u undostamp Sample1.pdf

Advisory: Forgetting the UndoLabel makes removal impossible without the original stamp file. The label is not visible in the stamped document. Acrobat's "Save As" command removes undo labels.
Type-- required

Specifies the stamp type: Text, UTF8, UTF16, Image, PDF, or Barcode.


Pagination Parameters

StartPage-- optional, default: 1

First page to stamp. Use -1 for the last page.

EndPage-- optional, default: -1 (last page)

Last page to stamp. Use -1 to stamp through the end of the document.

PageIncrement-- optional, default: 1

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 ...
PageRange-- optional

Comma-separated list of specific pages. Overrides StartPage, EndPage, and PageIncrement.

PageRange (1,3,6,8)

Positioning Parameters

Position-- optional, default: Top

Stamp location on the page:

  • Top -- horizontal across page top
  • Bottom -- horizontal across page bottom
  • Diag-BottomLeft -- diagonal, bottom-left origin
  • Diag-TopLeft -- diagonal, top-left origin
  • BottomUp-Left / BottomUp-Right -- vertical text upward
  • TopDown-Left / TopDown-Right -- vertical text downward
  • VCenter -- vertical center of page
  • Angle -- custom angle (requires Angle parameter)
Top + Left
Top + Center
Top + Right
VCenter
Bottom + Left
Bottom + Center
Bottom + Right
Diag-BottomLeft
Diag-TopLeft
BottomUp-Left
TopDown-Right
All available stamp position options relative to the page.
Justification-- optional, default: Center

Text alignment: Left, Right, or Center.

 
 
 
 
Left
 
 
 
 
Center
 
 
 
 
Right
Angle-- optional, default: 0

Rotation in degrees. Requires Position (Angle). Justification is always Left when using Angle.

Position (Angle)
Angle (45)
Underlay-- optional, default: No

Yes = stamp below content; No = stamp on top.

 
DRAFT
Overlay (on top)
 
DRAFT
Underlay (behind)
Note: Underlaid stamps on scanned-image PDFs will be invisible. Use overlay instead, optionally with TextMode (1) for outlined text or Opacity (0.5) for transparency.
Top / Bottom / Left / Right-- optional

Custom margins (in points) that override the options block. Measured from the lower-left corner of the page.

 
Top (custom)
Bottom (custom)
Left
Right
Stamp Item
Area
Custom margin parameters override the options block for individual stamp items.
PageBox-- optional, default: cropbox

Page boundary: mediabox, cropbox, artbox, trimbox, or bleedbox.

OffsetX / OffsetY-- optional

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
 
 
Computed pos
 
OffsetX +36pt
 
OffsetY -20pt
 
Final pos
OffsetX and OffsetY provide precise adjustments from the computed position.

Text Options

Size-- optional, default: 12 pt

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-- optional, default: Helvetica Bold

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.

Tip -- Multiple Fonts: A single stamp item uses one font. To mix fonts, create separate stamp items and use spaces/offsets to align them:
# 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."
TextMode-- optional, default: 0 (solid)

0 = solid, 1 = outlined, 3 = invisible (searchable but won't print).

 
SAMPLE
TextMode 0 (solid)
 
SAMPLE
TextMode 1 (outlined)
 
SAMPLE
TextMode 3 (invisible)
Text-- required

The content to stamp. Supports variable substitution (see Variables tab).

 
INTERNAL USE ONLY
Example: text stamp applied to a PDF document.
WordWrap-- optional, default: No

Yes = long lines wrap at margins. ASCII only -- CJK requires MultiLine with manual breaks.

CharSpace / WordSpace-- optional, default: 0

Adjust character/word spacing. Positive = more space; negative = less space. Up to 3 decimal places.

LineSpace-- optional, default: 1

Line spacing multiplier. 2 = double-spaced. Values < 1 decrease spacing.


Color

ColorSpace-- optional, default: DeviceGray

DeviceGray, DeviceRGB, or DeviceCMYK. Sets the color model; actual color set with the parameters below.

Gray-- 0-100

0 = black, 100 = white. Example: Gray (50) for medium gray.

Red / Green / Blue-- 0-255 each

All three must be specified. Example:

ColorSpace (DeviceRGB)
Red (102)
Green (51)
Blue (204)   # purple
Cyan / Magenta / Yellow / Black-- 0-1 each

All four must be specified. Example:

ColorSpace (DeviceCMYK)
Cyan (0.63)
Magenta (0.76)
Yellow (0)
Black (0)   # purple

Additional Text Options

Opacity-- optional, default: 1

0 = transparent, 1 = fully opaque. Use 0.3 for a typical watermark effect.

BatesDigit-- optional

Number of digits for Bates numbering with %J or %C variables. Overrides -j command-line option.

LinkURL-- optional

Associate a URL with the text stamp: LinkURL (http://www.example.com)

AutoScale-- optional

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."
Note: To display a literal % 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)
Tip: Use %<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"
 
2
Even page (left)
 
3
Odd page (right)
 
4
Even page (left)

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
 
CaseABCD 000501
Page 1
 
CaseABCD 000502
Page 2
 
CaseABCD 000503
Page 3

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
 
Appligent, Inc.
22 East Baltimore Avenue
Lansdowne, PA 19050 USA
Multi-line stamp using %n line break variables.
Advisory: Bottom-positioned multi-line stamps start at the Bottom margin and grow downward. Increase the margin to prevent text from running off the page.

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))
Note: Field names are case-sensitive and must match exactly. Empty fields produce no output.
Document Properties -- Description
Title:
Annual Report 2024
Author:
J. Smith
Subject:
Financial Summary
Keywords:
finance, annual, report
Creator:
Microsoft Word
Producer:
Acrobat Distiller 11.0
Document Properties dialog -- fields accessible via %i() variables.

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:

Type (Image)-- required

Set to Image for JPEG/TIFF stamps.

Path-- required for images

Full path to the image file (JPEG or TIFF).

Scale-- optional

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.

Type (PDF)-- required

Set to PDF for PDF-to-PDF stamping.

Path-- required

Full path to the source PDF file.

PageNumber-- optional

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

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
Tip: Use -l logfile.txt -p together for the most complete diagnostic output regardless of whether errors occur.

Optimization Details

The -optimize flag performs these operations:

  1. Encodes non-encoded streams with Flate compression
  2. Removes ASCII85 filters from streams
  3. Replaces LZW with Flate encoding
  4. Merges identical XObjects and images
  5. Optimizes page content sequences
  6. 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-8 stamp output with Japanese characters.

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)
 
印刷の例
複数行のテスト
Multi-line Unicode stamp output.

Shipped Fonts

The following fonts ship with StampPDF Batch (version 5.2+):

AdobeArabic-Bold
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 PDF 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  
On This Page