Class FdfReader

FdfReader class

Class which performes reading of FDF format.

public sealed class FdfReader

Methods

NameDescription
static ReadAnnotations(Stream, Document)Import annotations from FDF file and put them into document.

Examples

Document doc = new Document("example.pdf");
Stream fdfStream = File.OpenRead("file.fdf");
FdfReader.ReadAnnotations(fdfStream, doc);
fdfStream.Close();
doc.Save("example_out.pdf");

See Also