Java PDF Toolkit is a powerful Java PDF tool for Manipulating PDF Documents. Java PDF Toolkit is a .jar component, it can be run on Windows, Mac and Linux systems directly. With Java PDF Toolkit, you can quickly split, merge, rotate, watermark, stamp and secure PDF pages and documents. Java PDF Toolkit supports command line operation, you can run it on client and server systems to manipulate your PDF files easily.

Java PDF Toolkit is a .jar package which support command-line options. It is commonly used for server-side processing of PDFs. It is also used by many PC software publishers to give their products the ability to manipulate PDFs.

Java PDF Toolkit has following highlight features:
* Merge PDF Documents or Collate PDF Page Scans.
* Split PDF Pages into a New Document.
* Rotate PDF Documents or Pages.
* Decrypt Input as Necessary (Password Required).
* Encrypt Output as Desired.
* Fill PDF Forms with X/FDF Data and/or Flatten Forms.
* Generate FDF Data Stencils from PDF Forms.
* Apply a Background Watermark or a Foreground Stamp.
* Report PDF Metrics, Bookmarks and Metadata.
* Add/Update PDF Bookmarks or Metadata.
* Attach Files to PDF Pages or the PDF Document.
* Unpack PDF Attachments.
* Burst a PDF Document into Single Pages.
* Uncompress and Re-Compress Page Streams.
* Repair Corrupted PDF (Where Possible).
* Append -- Append PDF to another PDF, generating a new PDF.
* Split -- Splits a PDF at a specified interval, (ex. 2 pages, 3 pages, etc.), generating new PDFs for each section.
* Split At -- Split PDF into two PDFs at a specific page, generating two new PDFs.
* Insert PDF -- Insert PDF at a specific Page.
* Delete Pages -- Deletes pages from a PDF document.
* Extract Pages -- Extracts specific pages from a PDF document.
* Rotate PDF -- Rotate the pages in a PDF document.
* PDF Watermarking.
* PDF Encryption / Decryption.
* PDF Forms Support. Work with AcroForms and Static/Dynamic XFA forms.
* TIFF to PDF transformation (available upon request).
* Office to PDF transformation (available upon request).
* Build Custom Applications with Java (available upon request).
* Data Extraction. Text, image, and data extraction (available upon request).
* PDF/A Conversion & Validation. Create PDF/A compliant documents (available upon request).
* PDF Annotations. Use annotations within PDFs for increased collaboration (available upon request).
* Digital Signatures. Create PAdES-compliant digital signatures (available upon request).

Java PDF Toolkit does not require Adobe Acrobat or Reader, and it runs on Windows, Mac OS X and Linux.

PDF Forms Processing
PDF Java Toolkit includes comprehensive support for all PDF form types. Simplify the import and export of data to AcroForms, Dynamic XFA, and Static XFA forms. Use high-level Java classes to efficiently flatten AcroForms and more.

Java PDF Toolkit Benefits
The Java PDF toolkit offers many benefits to make working with your PDF documents easy and efficient. Whether you're a developer looking to implement our technology into your own applications, or you just need help managing PDFs, there are many advantages of using this powerful SDK.

A native Java library for mission critical PDF workflows
* Build applications that are interoperable with Adobe products
* Unparalled form support
* Manage digital signatures
* Redact and sanitize
* Simplified document creation

Automate business workflow with PDF Java Toolkit
PDF Java Toolkit is a native Java library that provides high-level APIs for automating PDF workflows like processing PDF forms, encrypt/decrypt PDF files and watermark PDF files. While written with Java developers in mind, PDF Java Toolkit can be used with any JVM language (Clojure, Scala, Groovy, etc.) and if you ever need help, our enterprise support team is only an email or phone call away!

Java PDF Toolkit Command Line Options:

jpdfkit [input PDF files | - | PROMPT]
 [ input_pw [input PDF owner passwords | PROMPT] ]
 [ [operation] [operation arguments] ]
 [ output [output filename | - | PROMPT] ]
 [ encrypt_40bit | encrypt_128bit ]
 [ allow [permissions] ]
 [ owner_pw [owner password | PROMPT] ]
 [ user_pw [user password | PROMPT] ]
 [ flatten ] [ need_appearances ]
 [ compress | uncompress ]
 [ keep_first_id | keep_final_id ] [ drop_xfa ] [ drop_xmp ]
 [ verbose ] [ dont_ask | do_ask ]
Where:
 [operation] may be empty, or:
 [ cat | shuffle | burst | rotate |
 generate_fdf | fill_form |
 background | multibackground |
 stamp | multistamp |
 dump_data | dump_data_utf8 |
 dump_data_fields | dump_data_fields_utf8 |
 dump_data_annots |
 update_info | update_info_utf8 |
 attach_files | unpack_files ]

Some example command lines:

-- Collate scanned pages

java -jar jpdfkit.jar A=sample_even.pdf B=sample_odd.pdf shuffle A B output _collated1.pdf

-- or if odd.pdf is in reverse order

java -jar jpdfkit.jar A=sample_even.pdf B=sample_odd.pdf shuffle A Bend-1 output _collated2.pdf

-- Decrypt a PDF

java -jar jpdfkit.jar sample_secured.pdf input_pw 456 output _unsecured.pdf

-- Encrypt a PDF using 128-bit strength

java -jar jpdfkit.jar sample_verypdf.pdf output _encrypted.128.pdf owner_pw 123

-- Set both owner password and open password to a PDF file

java -jar jpdfkit.jar sample_verypdf.pdf output _encrypted_both.pdf owner_pw 456 user_pw 123

-- Enable High Quality Printing when encrypt a PDF file

java -jar jpdfkit.jar sample_verypdf.pdf output _encrypted_highprinting.pdf owner_pw 456 user_pw 123 allow printing

-- Merge PDF files into a new PDF

java -jar jpdfkit.jar sample_even.pdf sample_odd.pdf cat output _merge_out1.pdf
java -jar jpdfkit.jar A=sample_even.pdf B=sample_odd.pdf cat A B output _merge_out2.pdf

-- or using wildcards,

java -jar jpdfkit.jar sample_in*.pdf cat output _combined_all.pdf

-- Remove some page from an input PDF file. The example shows how to remove P13 from the input file

java -jar jpdfkit.jar sample_testcmd.pdf cat 1-12 14-end output _remove_pages_1.pdf

-- or:

java -jar jpdfkit.jar A=sample_testcmd.pdf cat A1-12 A14-end output _remove_pages_2.pdf

-- Merge PDF files and add a password for the output file

java -jar jpdfkit.jar sample_even.pdf sample_odd.pdf cat output _merge_out.pdf encrypt_40bit owner_pw 123

-- Merge PDF files and if one of them requires password, input it,

java -jar jpdfkit.jar A=sample_secured.pdf sample_verypdf.pdf input_pw A=123 cat output _merge_out.pdf

-- Unpack PDF page streams for editing PDF in a text editor

java -jar jpdfkit.jar sample_verypdf.pdf output _unpack_verypdf.pdf uncompress

-- Repair PDF's corrupted XREF table and stream lengths

java -jar jpdfkit.jar sample_verypdf.pdf output _verypdf_fixed.pdf

-- Split a multip-page PDF file into single-page PDF files

java -jar jpdfkit.jar testcmd.pdf burst
java -jar jpdfkit.jar sample_testcmd.pdf burst output _pg_%%04d.pdf

-- Blast a multip-page PDF file into several encrypted single-page PDF files, denying low-quality printing

java -jar jpdfkit.jar sample_secured.pdf input_pw 123 burst owner_pw 123 allow degradedprinting

-- Extract meta info from input PDF file to the given output file

java -jar jpdfkit.jar sample_verypdf.pdf dump_data output _report.txt

-- Rotate the first PDF page clockwise

java -jar jpdfkit.jar sample_verypdf.pdf cat 1east 2-end output _rotate_out1.pdf

-- Rotate an entire PDF document to 180 degrees

java -jar jpdfkit.jar sample_verypdf.pdf cat 1-endsouth output _rotate_out2.pdf

-- Add information from text file to output PDF file

java -jar jpdfkit.jar sample_verypdf.pdf update_info _report.txt output _newinfo.pdf

Notes:
jpdfkit.jar is a command-line program, so you should use your computer terminal or command prompt when first testing these examples.

See Also:

Java PDF Toolkit (jpdfkit) Command Line Examples,
https://veryutils.com/blog/java-pdf-toolkit-jpdfkit-command-line-examples/

Java PDFTools (jpdftools.jar) Command Line
https://veryutils.com/java-pdftools

PDF Toolkit Command Line Tools & Utilities
https://veryutils.com/pdf-toolkit-command-line-tools-and-utilities

PDF Page Master Command Line
https://veryutils.com/pdf-page-master-command-line

PDF Signer Software
https://veryutils.com/pdf-signer-software

PDF Digital Signature Tool
https://veryutils.com/pdf-digital-signature-tool

Write a review

Note: HTML is not translated!
    Bad           Good
Captcha

Java PDF Toolkit (jpdfkit)

  • Product Code: MOD200513194232
  • Availability: In Stock
  • Viewed: 20077
  • Units Sold: 3
  • Sold By: Java Studio
  • Seller Rating:
  • Seller Reviews: (0)
  • $199.00

  • Ex Tax: $199.00

Available Options


Related Products

UndeleteMyFiles for Windows

UndeleteMyFiles for Windows

UndeleteMyFiles is a fully featured file recovery tool for Windows. UndeleteMyFiles is a profesion..

$39.95 Ex Tax: $39.95

PHP Email Extractor

PHP Email Extractor

PHP Email Extractor - the Best tool for extracting any email address. Extract email addresses from..

$19.95 Ex Tax: $19.95

PDF Virtual Printer SDK Based on Postscript Printer Driver for Developer Royalty Free

PDF Virtual Printer SDK Based on Postscript Printer Driver for Developer Royalty Free

PDF Virtual Printer SDK Based on Postscript Printer Driver for Windows Developers Royalty Free PDF ..

$1,500.00 Ex Tax: $1,500.00

Java PDF Reader Custom Build Service

Java PDF Reader Custom Build Service

Java PDF Reader (Windows, Mac, Linux) Java PDF Reader is Java Visual Component to Display PDF, Offi..

$5,000.00 Ex Tax: $5,000.00

ConvertDoc Command Line for Windows

ConvertDoc Command Line for Windows

ConvertDoc Command Line software does convert between markup formats. ConvertDoc is a Command Line..

$79.95 Ex Tax: $79.95

Internet Download Manager

Internet Download Manager

VeryUtils Internet Download Manager is a download manager that combines lightweight resource usage..

$29.95 Ex Tax: $29.95

PDF Comparer for Windows

PDF Comparer for Windows

PDF Comparer can be used to compare two PDF files and text files. PDF Comparer is able to find the..

$39.95 Ex Tax: $39.95

PDF to Excel Converter Command Line

PDF to Excel Converter Command Line

PDF to Excel Converter Command Line is a command line application to extract tables from PDF files..

$299.00 Ex Tax: $299.00

Raster to Vector Converter Command Line

Raster to Vector Converter Command Line

Raster to Vector Converter Command Line is a professional software for converting raster images to..

$299.00 Ex Tax: $299.00

PDF Page Counter for All Sub-folders by PHP Script

PDF Page Counter for All Sub-folders by PHP Script

PDF Page Counter can be used to count the number of pages of all PDFs in current directory and all..

$59.95 Ex Tax: $59.95

PS to Image Converter SDK

PS to Image Converter SDK

PostScript to Image Converter SDK is a DLL SDK Library for developers. PS to Image Converter SDK i..

$295.00 Ex Tax: $295.00

QR-Code Contactless Digital Menus for Restaurants

QR-Code Contactless Digital Menus for Restaurants

QR-Code Contactless Digital Menus for Restaurants. QR-Code for your restaurant menu. Make Interact..

$49.95 Ex Tax: $49.95

Save
20%

BatchPrint for Windows

BatchPrint for Windows

BatchPrint is a batch printing software for Windows to batch print multiple documents in different f..

$39.95 $49.95 Ex Tax: $39.95

Tags: java pdf, java pdf toolkit, jpdfkit, linux pdf, linux pdf toolkit, linux pdf tools, linux pdfkit, mac pdf, pdf java toolkit, pdf server, pdf toolkit, pdf tools, pdfbox, pdfkit, pdftk, pdftoolbox, pdftoolkit, windows pdf