Class DocumentDevice

DocumentDevice class

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

public abstract class DocumentDevice : PageDevice

Methods

NameDescription
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(Page, Stream)Perfoms some operation on the given page, e.g. converts page into graphic image.
Process(Page, string)Perfoms some operation on the given page and saves results into the 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