PageDevice.Process

Process(Page, Stream)

Perfoms some operation on the given page, e.g. converts page into graphic image.

public abstract void Process(Page page, Stream output)
ParameterTypeDescription
pagePageThe page to process.
outputStreamThis stream contains the results of processing.

See Also


Process(Page, string)

Perfoms some operation on the given page and saves results into the file.

public void Process(Page page, string outputFileName)
ParameterTypeDescription
pagePageThe page to process.
outputFileNameStringThis file contains the results of processing.

See Also