|
||||||||||||||
TUTORIALSBasics: Accessing modulesAs easy as 1, 2, 3...
|
||||||||||||||
| Template | For anything related to form fields or image replacing. |
| Merger | For joining or splitting documents. |
| Creator | For drawing new figures or adding content to existing content. |
| Encryption | For restricting document access to a group of people and for ciphering contents. |
| Signer | For anything related to certificates and signatures. |
| Viewer | A pure Java PDF renderer. |
| Printer | For printing PDF content to printers or converting to other formats. |
All these modules must be purchased separatly, except for Encryption which is bundled free of charge.
Modules can be accessed from any PdfDocument instance. The screen shot below shows the methods that are of interest.
Typically, the accessing of a module will look like this section of code:
// Open the Document:
PdfDocument doc = new PdfDocument("myFile.pdf");
// Recover the Creator module:
CreatorModule creator = doc.getCreatorModule();
// Do something with it...:
Page page = creator.createPage();
That's all for this basic tutorial session.
You can get more information about specific modules by checking:The tutorials sections
The api documentation
| © 2000-2007 Crionics Inc. |