Fork of icepdf version 6.1.1 version with internal re-org and enhancements.
Part of re-org project has been moved to maven project structure. New modules introduced for better management and reuse.
- core - Main ICEPDF core API with enhancements, it is pure java implementation to view Acrobat PDF files.
- print - Simple Java API to print PDF from Java applications. For those who want
use
levigo jbig2
needs to manually build using gpl profile. - viewer - Java Swing based application to view Acrobat PDF files.
- viewerapp - A bundled application of viewer, self contained jar with all dependent
jars included. For those who want use
levigo jbig2
needs to manually build using gpl profile. - examples - Some of java examples to use ICEPDF library
- webviewer - A JSF 2.x based web application which uses ICEPDF library to view and transform.
ICEPDF API, as is from SVN repository. Additional support classes are added to get clean compile of the project.
<dependency>
<groupId>org.pdf4j.icepdf</groupId>
<artifactId>pdf4j-icepdf-core</artifactId>
<version>6.1.1</version>
</dependency>
Simple Java POJO classes provides the ability to print support form java applications.
<dependency>
<groupId>org.pdf4j.icepdf</groupId>
<artifactId>pdf4j-icepdf-print</artifactId>
<version>6.1.1</version>
</dependency>
Use command line to print PDF files silently.
For projects which cannot use GPL based library can use the Apache license version
java -jar pdf4j-icepdf-print-6.1.1-asl.jar -file "PDF File name" -printer "Printer Name"
For those who can use GPL, use GPL version. Make a note, this require manual build to activate gpl profile -Pgpl
.
java -jar pdf4j-icepdf-print-6.1.1-gpl.jar -file "PDF File name" -printer "Printer Name"
Parameter details:
-file "pdf file name", required field
-printer "printer name", Optional default printer used when ignored
-help Print this usage help.
This PDF4J ICEPDF Print API provide limited features for silent printing.
For more advanced print features and control, use PDF4J Print API which gives better print support and control.
ICEPDF Java Viewer, as is from SVN repository.
<dependency>
<groupId>org.pdf4j.icepdf</groupId>
<artifactId>pdf4j-icepdf-viewer</artifactId>
<version>6.1.1</version>
</dependency>
Standalone PDF Viewer, with self contained classes in a single jar file. Use manual build to create GPL jar file.
java -jar pdf4j-icepdf-viewerapp-asl.jar
or
java -jar pdf4j-icepdf-viewerapp-gpl.jar
For those who want use levigo jbig2 needs to manually build using gpl profile. Currently PRINT
and VIEWER
modules support these profile.
cd print
or
cd viewerapp
mvn clean package -Pgpl
ICEPDF is under Apache license (ASL).
All contributions and work performed by PDF4J Team is applicable under ASL 2.0
Some of the optional library are in eigher BSD or GPL license. Check moodules for information.
This repository has three branches.
- master - main sources
- svn-icepdf - sources directly from svn repository
- gh-pages - public web pages and documentation