Class DocumentDevice

DocumentDevice class

Abstract class for all devices which is used to process the whole pdf document.

public abstract class DocumentDevice : Device

Methods

NameDescription
BinarizeBradley(Stream, Stream, double)Do Bradley binarization for input stream.
Process(Document, Stream)Processes the whole document and saves results into stream.
Process(Document, string)Processes the whole document and saves results into file.
abstract Process(Document, int, int, Stream)Each device represents some operation on the document, e.g. we can convert pdf document into another format.
Process(Document, int, int, string)Processes certain pages of the document and saves results into file.

See Also