public final class FdfReader extends Object
Class which performs reading of FDF format.
Document doc = new Document("example.pdf"); InputStream fdfStream = FileInputStream("file.fdf"); FdfReader.readAnnotations(fdfStream, doc); fdfStream.close(); doc.save("example_out.pdf");Modifier and Type | Method and Description |
---|---|
static void |
readAnnotations(InputStream stream,
Document document)
Import annotations from FDF file and put them into document.
|
public static void readAnnotations(InputStream stream, Document document)
Import annotations from FDF file and put them into document.
stream
- Source stream containing FDF file.document
- Document where annotations will be added.Copyright © 2024 Aspose. All Rights Reserved.