Aspose::Pdf::Devices::TiffDevice::Process method

TiffDevice::Process(System::SharedPtr<Aspose::Pdf::Document>, int32_t, int32_t, System::SharedPtr<System::IO::Stream>) method

Converts certain document pages into tiff and save it in the output stream.

void Aspose::Pdf::Devices::TiffDevice::Process(System::SharedPtr<Aspose::Pdf::Document> document, int32_t fromPage, int32_t toPage, System::SharedPtr<System::IO::Stream> output) override
ParameterTypeDescription
documentSystem::SharedPtr<Aspose::Pdf::Document>The document to convert.
fromPageint32_tDefines page number from which converting will start.
toPageint32_tDefines page number which will end the converting.
outputSystem::SharedPtr<System::IO::Stream>Output stream with tiff image.

See Also

TiffDevice::Process(System::SharedPtr<Page>, System::SharedPtr<System::IO::Stream>) method

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

void Aspose::Pdf::Devices::TiffDevice::Process(System::SharedPtr<Page> page, System::SharedPtr<System::IO::Stream> output) override
ParameterTypeDescription
pageSystem::SharedPtr<Page>The page to process.
outputSystem::SharedPtr<System::IO::Stream>This stream contains the results of processing.

See Also