
Pdftk Server
- 9.9k installs
- 37.1k repo stars
- Updated July 28, 2026
- github/awesome-copilot
PDFtk Server is a CLI tool that automates PDF document operations including merge, split, encryption, form-filling, watermarking, and metadata extraction.
About
PDFtk Server is a command-line tool for programmatic PDF manipulation. Developers use it to automate PDF workflows: merging/splitting documents, encrypting/decrypting, filling forms, applying watermarks, extracting metadata, repairing corrupted files, and collating scanned pages. Key operations include cat (merge/extract), burst (split), stamp/background (overlays), fill_form (form population), and dump_data (metadata extraction). Supports 128-bit encryption, FDF form data, and page rotation. Installation available via package managers (brew, apt, dnf, winget) across macOS, Linux, and Windows.
- Merge multiple PDFs or extract specific page ranges with single commands
- Encrypt/decrypt PDFs with owner and user passwords at 128-bit encryption
- Fill PDF form fields from FDF/XFDF data and flatten to prevent editing
- Apply watermarks (background) and stamps (overlay) to every page
- Extract metadata, bookmarks, and page metrics; repair corrupted PDFs
Pdftk Server by the numbers
- 9,867 all-time installs (skills.sh)
- +36 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #30 of 560 CLI & Terminal skills by installs in the Skillselion catalog
- Security screen: HIGH risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
pdftk-server capabilities & compatibility
- Capabilities
- merge and concatenate pdf files · split and burst pdfs into pages · encrypt and decrypt with passwords · fill and flatten pdf forms · apply watermarks and overlays · extract metadata and bookmarks · repair corrupted pdfs
- Works with
- github
- Use cases
- api development · data analysis
- Platforms
- macOS · Windows · Linux · WSL
- Runs
- Runs locally
- Pricing
- Free
What pdftk-server says it does
Merging or joining multiple PDF files into one
Encrypting or decrypting PDF files
Filling PDF form fields from FDF/XFDF data
pdftk file1.pdf file2.pdf cat output merged.pdf
npx skills add https://github.com/github/awesome-copilot --skill pdftk-serverAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 9.9k |
|---|---|
| repo stars | ★ 37.1k |
| Security audit | 1 / 3 scanners passed |
| Last updated | July 28, 2026 |
| Repository | github/awesome-copilot ↗ |
What it does
Merge, split, encrypt, decrypt, watermark, and manipulate PDF files from the command line.
Who is it for?
Backend automation, document processing pipelines, batch PDF manipulation, form population systems, PDF encryption workflows.
Skip if: Interactive PDF editing, GUI-based document design, real-time collaborative editing, complex PDF layout analysis.
When should I use this skill?
Need to merge/split PDFs, encrypt documents, fill forms programmatically, apply watermarks, extract metadata, or repair corrupted PDFs.
What you get
Automated PDF processing workflows that merge documents, secure sensitive PDFs, populate forms, apply branding, and repair corrupted files.
- Merged or split PDF files
- Encrypted/decrypted PDF documents
- Filled and flattened PDF forms
By the numbers
- Supports 128-bit encryption for PDF security
- Can burst a PDF into individual pages in one operation
- Handles multiple input files and handles in a single command
Files
PDFtk Server
PDFtk Server is a command-line tool for working with PDF documents. It can merge, split, rotate, encrypt, decrypt, watermark, stamp, fill forms, extract metadata, and manipulate PDFs in a variety of ways.
When to Use This Skill
- Merging or joining multiple PDF files into one
- Splitting or bursting a PDF into individual pages
- Rotating PDF pages
- Encrypting or decrypting PDF files
- Filling PDF form fields from FDF/XFDF data
- Applying background watermarks or foreground stamps
- Extracting PDF metadata, bookmarks, or form field information
- Repairing corrupted PDF files
- Attaching or extracting files embedded in PDFs
- Removing specific pages from a PDF
- Collating separately scanned even/odd pages
- Compressing or decompressing PDF page streams
Prerequisites
- PDFtk Server must be installed on the system
- Windows:
winget install --id PDFLabs.PDFtk.Server - macOS:
brew install pdftk-java - Linux (Debian/Ubuntu):
sudo apt-get install pdftk - Linux (Red Hat/Fedora):
sudo dnf install pdftk - Access to a terminal or command prompt
- Verify installation by running
pdftk --version
Step-by-Step Workflows
Merge Multiple PDFs
pdftk file1.pdf file2.pdf cat output merged.pdfUsing handles for more control:
pdftk A=file1.pdf B=file2.pdf cat A B output merged.pdfSplit a PDF into Individual Pages
pdftk input.pdf burstExtract Specific Pages
Extract pages 1-5 and 10-15:
pdftk input.pdf cat 1-5 10-15 output extracted.pdfRemove Specific Pages
Remove page 13:
pdftk input.pdf cat 1-12 14-end output output.pdfRotate Pages
Rotate all pages 90 degrees clockwise:
pdftk input.pdf cat 1-endeast output rotated.pdfEncrypt a PDF
Set an owner password and a user password with 128-bit encryption (default):
pdftk input.pdf output secured.pdf owner_pw mypassword user_pw userpassDecrypt a PDF
Remove encryption using the known password:
pdftk secured.pdf input_pw mypassword output unsecured.pdfFill a PDF Form
Populate form fields from an FDF file and flatten to prevent further edits:
pdftk form.pdf fill_form data.fdf output filled.pdf flattenApply a Background Watermark
Place a single-page PDF behind every page of the input (input should have transparency):
pdftk input.pdf background watermark.pdf output watermarked.pdfStamp an Overlay
Place a single-page PDF on top of every page of the input:
pdftk input.pdf stamp overlay.pdf output stamped.pdfExtract Metadata
Export bookmarks, page metrics, and document information:
pdftk input.pdf dump_data output metadata.txtRepair a Corrupted PDF
Pass a broken PDF through pdftk to attempt automatic repair:
pdftk broken.pdf output fixed.pdfCollate Scanned Pages
Interleave separately scanned even and odd pages:
pdftk A=even.pdf B=odd.pdf shuffle A B output collated.pdfTroubleshooting
| Issue | Solution |
|---|---|
pdftk command not found | Verify installation; check that pdftk is in your system PATH |
| Cannot decrypt PDF | Ensure you are providing the correct owner or user password via input_pw |
| Output file is empty or corrupt | Check input file integrity; try running pdftk input.pdf output repaired.pdf first |
| Form fields not visible after fill | Use the flatten flag to merge fields into the page content |
| Watermark not appearing | Ensure the input PDF has transparent regions; use stamp for opaque overlays |
| Permission denied errors | Check file permissions on input and output paths |
References
Bundled reference documents in the references/ folder:
- pdftk-man-page.md - Complete manual reference with all operations, options, and syntax
- pdftk-cli-examples.md - Practical command-line examples for common tasks
- download.md - Installation and download instructions for all platforms
- pdftk-server-license.md - PDFtk Server licensing information
- third-party-materials.md - Third-party library licenses
Download
PDFtk provides an installer for Windows. Many Linux distributions provide a PDFtk package you can download and install using their package manager.
Microsoft Windows
Download the PDFtk Server installer for Windows 10 and 11 using the following command:
winget install --id PDFLabs.PDFtk.ServerThen run the installer:
.\pdftk_server-2.02-win-setup.exeAfter installation, open a command prompt, type pdftk and press Enter. PDFtk will respond by displaying brief usage information.
Linux
On Debian/Ubuntu-based distributions:
sudo apt-get install pdftkOn Red Hat/Fedora-based distributions:
sudo dnf install pdftkPDFtk Server GPL License
PDFtk Server (pdftk) is not public domain software. It can be installed and used at no charge under its GNU General Public License (GPL) Version 2. PDFtk uses third-party libraries. The licenses and source code for these libraries are described here under Third-Party Materials.
PDFtk Server Redistribution License
If you plan to distribute PDFtk Server as part of your own software, you will need a PDFtk Server Redistribution License. The exception to this rule is if your software is licensed to the public under the GPL or another compatible license.
The commercial redistribution license allows you, subject to the terms of the license, to distribute an unlimited number of PDFtk Server binaries as part of one distinct commercial product. Please read the full license:
PDFtk Server Redistribution License (PDF)
Now available for $995:
PDFtk Server Redistribution License
Build PDFtk Server from Source
PDFtk Server can be compiled from its source code. PDFtk Server is known to compile and run on Debian, Ubuntu Linux, FreeBSD, Slackware Linux, SuSE, Solaris and HP-UX.
Download and unpack the source:
curl -LO https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk-2.02-src.zip
unzip pdftk-2.02-src.zipReview the pdftk license information in: license_gpl_pdftk/readme.txt.
Review the Makefile provided for your platform and confirm that TOOLPATH and VERSUFF suit your installation of gcc/gcj/libgcj. If you run apropos gcc and it returns something like gcc-4.5, then set VERSUFF to -4.5. The TOOLPATH probably does not need to be set.
Change into the pdftk sub-directory and run:
cd pdftk
make -f Makefile.DebianSubstitute your platform's Makefile filename as needed.
PDFtk has been built using gcc/gcj/libgcj versions 3.4.5, 4.4.1, 4.5.0, and 4.6.3. PDFtk 1.4x fails to build on gcc 3.3.5 due to missing libgcj features. If you are using gcc 3.3 or older, try building pdftk 1.12 instead.
PDFtk CLI Examples
PDFtk is a command-line program. Use your computer terminal or command prompt when running these examples.
Collate Scanned Pages
Interleave even and odd scanned pages into a single document:
pdftk A=even.pdf B=odd.pdf shuffle A B output collated.pdfIf the odd pages are in reverse order:
pdftk A=even.pdf B=odd.pdf shuffle A Bend-1 output collated.pdfDecrypt a PDF
Remove encryption from a PDF using its password:
pdftk secured.pdf input_pw foopass output unsecured.pdfEncrypt a PDF Using 128-Bit Strength
Apply owner password encryption:
pdftk 1.pdf output 1.128.pdf owner_pw foopassRequire a password to open the PDF as well:
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw bazEncrypt while still allowing printing:
pdftk 1.pdf output 1.128.pdf owner_pw foo user_pw baz allow printingJoin PDFs
Merge multiple PDFs into one:
pdftk in1.pdf in2.pdf cat output out1.pdfUsing handles for explicit control:
pdftk A=in1.pdf B=in2.pdf cat A B output out1.pdfUsing wildcards to merge all PDFs in a directory:
pdftk *.pdf cat output combined.pdfRemove Specific Pages
Exclude page 13 from a document:
pdftk in.pdf cat 1-12 14-end output out1.pdfUsing a handle:
pdftk A=in1.pdf cat A1-12 A14-end output out1.pdfApply 40-Bit Encryption
Merge and encrypt with 40-bit strength:
pdftk 1.pdf 2.pdf cat output 3.pdf encrypt_40bit owner_pw foopassJoin Files When One Is Password-Protected
Supply the password for the encrypted input:
pdftk A=secured.pdf 2.pdf input_pw A=foopass cat output 3.pdfUncompress PDF Page Streams
Decompress internal streams for inspection or debugging:
pdftk doc.pdf output doc.unc.pdf uncompressRepair Corrupted PDFs
Pass a broken PDF through pdftk to attempt repair:
pdftk broken.pdf output fixed.pdfBurst a PDF into Individual Pages
Split each page into its own file:
pdftk in.pdf burstBurst with encryption and limited printing:
pdftk in.pdf burst owner_pw foopass allow DegradedPrintingGenerate a PDF Metadata Report
Export bookmarks, metadata, and page metrics:
pdftk in.pdf dump_data output report.txtRotate Pages
Rotate the first page 90 degrees clockwise:
pdftk in.pdf cat 1east 2-end output out.pdfRotate all pages 180 degrees:
pdftk in.pdf cat 1-endsouth output out.pdfFill a PDF Form from Data
Populate form fields from an FDF file:
pdftk form.pdf fill_form data.fdf output filled_form.pdfFlatten the form after filling (prevents further editing):
pdftk form.pdf fill_form data.fdf output filled_form.pdf flattenApply a Background Watermark
Stamp a watermark behind every page:
pdftk input.pdf background watermark.pdf output watermarked.pdfStamp an Overlay on Top
Apply an overlay PDF on top of every page:
pdftk input.pdf stamp overlay.pdf output stamped.pdfAttach Files to a PDF
Embed files as attachments:
pdftk input.pdf attach_files table.html graph.png output output.pdfExtract Attachments from a PDF
Unpack all embedded files:
pdftk input.pdf unpack_files output /path/to/output/PDFtk Server Manual Reference
- `pdftk` version 2.02
- Check version history for changes
- See server manual for the latest documentation
Overview
PDFtk is a command-line utility for manipulating PDF documents. It enables operations including merging, splitting, rotating, encrypting, decrypting, watermarking, form-filling, and metadata extraction of PDF files.
Synopsis
pdftk [input PDF files | - | PROMPT]
[input_pw <passwords>]
[<operation>] [<operation arguments>]
[output <filename | - | PROMPT>]
[encrypt_40bit | encrypt_128bit]
[allow <permissions>]
[owner_pw <password>] [user_pw <password>]
[compress | uncompress]
[flatten] [need_appearances]
[verbose] [dont_ask | do_ask]Input Options
Input PDF Files: Specify one or more PDFs. Use - for stdin or PROMPT for interactive input. Files may be assigned handles (single uppercase letters) for reference in operations:
pdftk A=file1.pdf B=file2.pdf cat A B output merged.pdfInput Passwords (input_pw): For encrypted PDFs, provide owner or user passwords associated with file handles or by input order:
pdftk A=secured.pdf input_pw A=foopass cat output unsecured.pdfCore Operations
cat - Concatenate and Compose
Merge, split, or reorder pages with optional rotation. Supports page ranges, reverse ordering (prefix r), page qualifiers (even/odd), and rotation (compass directions north, south, east, west, left, right, down).
Page range syntax: [handle][begin[-end[qualifier]]][rotation]
pdftk A=in1.pdf B=in2.pdf cat A1-7 B1-5 A8 output combined.pdfshuffle - Collate Pages
Takes one page from each input range in turn, producing an interleaved result. Useful for collating separately scanned odd and even pages.
pdftk A=even.pdf B=odd.pdf shuffle A B output collated.pdfburst - Split into Individual Pages
Splits a single PDF into one file per page. Output files are named using printf-style formatting (default: pg_%04d.pdf).
pdftk input.pdf burst output page_%02d.pdfrotate - Rotate Pages
Rotates specified pages while maintaining document order. Uses the same page range syntax as cat.
pdftk in.pdf cat 1-endeast output rotated.pdfgenerate_fdf - Extract Form Data
Creates an FDF file from a PDF form, capturing current field values.
pdftk form.pdf generate_fdf output form_data.fdffill_form - Populate Form Fields
Fills PDF form fields from an FDF or XFDF data file.
pdftk form.pdf fill_form data.fdf output filled.pdf flattenbackground - Apply Watermark Behind Content
Applies a single-page PDF as a background (watermark) behind every page of the input. The input PDF should have a transparent background for best results.
pdftk input.pdf background watermark.pdf output watermarked.pdfmultibackground - Apply Multi-Page Watermark
Like background, but applies corresponding pages from the background PDF to matching pages in the input.
pdftk input.pdf multibackground watermarks.pdf output watermarked.pdfstamp - Overlay on Top of Content
Stamps a single-page PDF on top of every page of the input. Use this instead of background when the overlay PDF is opaque or has no transparency.
pdftk input.pdf stamp overlay.pdf output stamped.pdfmultistamp - Multi-Page Overlay
Like stamp, but applies corresponding pages from the stamp PDF to matching pages in the input.
pdftk input.pdf multistamp overlays.pdf output stamped.pdfdump_data - Export Metadata
Outputs PDF metadata, bookmarks, and page metrics to a text file.
pdftk input.pdf dump_data output metadata.txtdump_data_utf8 - Export Metadata (UTF-8)
Same as dump_data, but outputs UTF-8 encoded text.
pdftk input.pdf dump_data_utf8 output metadata_utf8.txtdump_data_fields - Extract Form Field Info
Reports form field information including type, name, and values.
pdftk form.pdf dump_data_fields output fields.txtdump_data_fields_utf8 - Extract Form Field Info (UTF-8)
Same as dump_data_fields, but outputs UTF-8 encoded text.
dump_data_annots - Extract Annotations
Reports PDF annotation information.
pdftk input.pdf dump_data_annots output annots.txtupdate_info - Modify Metadata
Updates PDF metadata and bookmarks from a text file (same format as dump_data output).
pdftk input.pdf update_info metadata.txt output updated.pdfupdate_info_utf8 - Modify Metadata (UTF-8)
Same as update_info, but expects UTF-8 encoded input.
attach_files - Embed Files
Attaches files to a PDF, optionally at a specific page.
pdftk input.pdf attach_files table.html graph.png to_page 6 output output.pdfunpack_files - Extract Attachments
Extracts file attachments from a PDF.
pdftk input.pdf unpack_files output /path/to/output/Output Options
| Option | Description |
|---|---|
output <filename> | Specify output file. Use - for stdout or PROMPT for interactive. |
encrypt_40bit | Apply 40-bit RC4 encryption |
encrypt_128bit | Apply 128-bit RC4 encryption (default when password set) |
owner_pw <password> | Set the owner password |
user_pw <password> | Set the user password |
allow <permissions> | Grant specific permissions (see below) |
compress | Compress page streams |
uncompress | Decompress page streams (useful for debugging) |
flatten | Flatten form fields into page content |
need_appearances | Signal viewer to regenerate field appearances |
keep_first_id | Preserve document ID from first input |
keep_final_id | Preserve document ID from last input |
drop_xfa | Remove XFA form data |
verbose | Enable detailed operation output |
dont_ask | Suppress interactive prompts |
do_ask | Enable interactive prompts |
Permissions
Use with the allow keyword when encrypting. Available permissions:
| Permission | Description |
|---|---|
Printing | Allow high-quality printing |
DegradedPrinting | Allow low-quality printing |
ModifyContents | Allow content modification |
Assembly | Allow document assembly |
CopyContents | Allow content copying |
ScreenReaders | Allow screen reader access |
ModifyAnnotations | Allow annotation modification |
FillIn | Allow form fill-in |
AllFeatures | Grant all permissions |
Key Notes
- Page numbers are one-based; use the
endkeyword for the final page - Handles are optional when working with a single PDF
- Filter mode (no operation specified) applies output options without restructuring
- Reverse page references use the
rprefix (e.g.,r1= last page,r2= second-to-last) - The
backgroundoperation requires a transparent input; usestampfor opaque overlay PDFs - Output filename cannot match any input filename
PDFtk Server License
PDFtk Server can be used at no charge under its GPL license.
Commercial users will benefit from the comprehensive commercial support agreement.
To distribute PDFtk Server as part of your own commercial product you will need to purchase the PDFtk Server Redistribution License.
PDFtk Server Redistribution License
If you plan to distribute PDFtk Server as part of your own software, you will need a PDFtk Server Redistribution License. The exception to this rule is if your software is licensed to the public under the GPL or another compatible license.
The commercial redistribution license allows you, subject to the terms of the license, to distribute an unlimited number of PDFtk Server binaries as part of one distinct commercial product. Please read the full license:
PDFtk Server Redistribution License (PDF)
Now available for $995:
Buy the PDFtk Server Redistribution License
PDFtk Server GPL License
PDFtk Server (pdftk) is not public domain software. It can be used at no charge under its GNU General Public License (GPL) Version 2. Click here to read the complete text.
PDFtk uses third-party libraries. The licenses and source code for these libraries are described in the third-party-materials reference document.
Third-Party Materials
PDFtk Server (pdftk) uses third-party libraries. Depending on the target operating system, some of these are linked or distributed with pdftk. These are their licensing terms.
GCC libgcj
The libgcj library is licensed under the terms of the GNU General Public License.
Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.
As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
Click to read the GNU General Public License Version 2.
Libgcj is part of GCC, so you can find its source code in the GCC source code.
GCC libgcc and libstdc++
GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Under Section 7 of GPL version 3, you are granted additional permissions described in the GCC Runtime Library Exception, version 3.1, as published by the Free Software Foundation.
Click to read the GNU General Public License Version 3.
Click to read the GCC Runtime Library Exception Version 3.1.
Libgcc and libstdc++ are part of GCC, so you can find their source code in the GCC source code.
GNU Classpath
GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version.
GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.
As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
Click to read the GNU General Public License Version 2.
Classpath is part of GCC, so you can find its source code in the GCC source code.
Bouncy Castle
The Bouncy Castle License
Copyright (c) 2000-2008 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Download the Bouncy Castle source code from: http://www.bouncycastle.org/.
iText (itext-paulo)
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
Click to read the GNU Library General Public License Version 2.
The iText source code used in pdftk is slightly modified from its original version. This modified version is included with the pdftk source code.
MinGW Runtimes (Windows Only)
MinGW runtime: The MinGW base runtime package has been placed in the public domain, and is not governed by copyright. This basically means that you can do what you like with the code.
w32api: You are free to use, modify and copy this package. No restrictions are imposed on programs or object files linked with this library. You may not restrict the usage of this library. You may distribute this library as part of another package or as a modified package if, and only if, you do not restrict the usage of the portions consisting of this (optionally modified) library. If distributed as a modified package, then a copy of this notice must be included.
This library is distributed in the hope that it will be useful, but WITHOUT WARRANTY OF ANY KIND; without even the implied warranties of MERCHANTABILITY or of FITNESS FOR A PARTICULAR PURPOSE.
Download the MinGW runtime source code from: http://mingw.org/.
Libiconv
The GNU LIBICONV Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
The GNU LIBICONV Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
Click to read the GNU Library General Public License.
Download the libiconv source code from: http://www.gnu.org/software/libiconv/
Apache Batik
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Click to read the Apache License Version 2.0.
Click to read the Apache Batik NOTICE file.
Download the Apache Batik source code from: http://xmlgraphics.apache.org/batik/.
Related skills
How it compares
Use pdftk-server for fast local PDF CLI operations when a coding agent needs merge or split without a document SaaS API.
FAQ
How do I merge multiple PDFs?
Use `pdftk file1.pdf file2.pdf cat output merged.pdf` or with handles: `pdftk A=file1.pdf B=file2.pdf cat A B output merged.pdf`
How do I encrypt a PDF with a password?
Use `pdftk input.pdf output secured.pdf owner_pw mypassword user_pw userpass` for 128-bit encryption with owner and user passwords.
How do I fill PDF form fields programmatically?
Populate an FDF file with field data, then run `pdftk form.pdf fill_form data.fdf output filled.pdf flatten` to merge fields into page content.
Is Pdftk Server safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.