Aspose::Words::LowCode::Converter::ConvertToImages method

Contents
[ ]

Converter::ConvertToImages(const System::SharedPtr<Aspose::Words::Document>&, Aspose::Words::SaveFormat) method

Converts the pages of the specified document to images in the specified format and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::SharedPtr<Aspose::Words::Document> &doc, Aspose::Words::SaveFormat saveFormat)
ParameterTypeDescription
docconst System::SharedPtr<Aspose::Words::Document>&The input document.
saveFormatAspose::Words::SaveFormatSave format. Only image save formats are allowed.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::SharedPtr<Aspose::Words::Document>&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified document to images using the specified save options and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::SharedPtr<Aspose::Words::Document> &doc, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
docconst System::SharedPtr<Aspose::Words::Document>&The input document.
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream>&, Aspose::Words::SaveFormat) method

Converts the pages of the specified input stream to images in the specified format and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream> &inputStream, Aspose::Words::SaveFormat saveFormat)
ParameterTypeDescription
inputStreamconst System::SharedPtr<System::IO::Stream>&The input stream.
saveFormatAspose::Words::SaveFormatSave format. Only image save formats are allowed.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<Aspose::Words::Loading::LoadOptions>&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified input stream to images using the provided load and save options, and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream> &inputStream, const System::SharedPtr<Aspose::Words::Loading::LoadOptions> &loadOptions, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
inputStreamconst System::SharedPtr<System::IO::Stream>&The input stream.
loadOptionsconst System::SharedPtr<Aspose::Words::Loading::LoadOptions>&The input document load options.
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified input stream to images using the specified save options and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::SharedPtr<System::IO::Stream> &inputStream, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
inputStreamconst System::SharedPtr<System::IO::Stream>&The input stream.
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::String&, Aspose::Words::SaveFormat) method

Converts the pages of the specified input file to images in the specified format and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, Aspose::Words::SaveFormat saveFormat)
ParameterTypeDescription
inputFileconst System::String&The input file name.
saveFormatAspose::Words::SaveFormatSave format. Only image save formats are allowed.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::String&, const System::SharedPtr<Aspose::Words::Loading::LoadOptions>&, const System::String&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified input file to image files using the provided load and save options.

static void Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, const System::SharedPtr<Aspose::Words::Loading::LoadOptions> &loadOptions, const System::String &outputFile, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
inputFileconst System::String&The input file name.
loadOptionsconst System::SharedPtr<Aspose::Words::Loading::LoadOptions>&The input document load options.
outputFileconst System::String&The output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

See Also

Converter::ConvertToImages(const System::String&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified input file to images using the specified save options and returns an array of streams containing the images.

static System::ArrayPtr<System::SharedPtr<System::IO::Stream>> Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
inputFileconst System::String&The input file name.
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

ReturnValue

Returns array of image streams. The streams should be disposed by the end user.

See Also

Converter::ConvertToImages(const System::String&, const System::String&) method

Converts the pages of the specified input file to image files.

static void Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, const System::String &outputFile)
ParameterTypeDescription
inputFileconst System::String&The input file name.
outputFileconst System::String&The output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”

See Also

Converter::ConvertToImages(const System::String&, const System::String&, Aspose::Words::SaveFormat) method

Converts the pages of the specified input file to image files in the specified format.

static void Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, const System::String &outputFile, Aspose::Words::SaveFormat saveFormat)
ParameterTypeDescription
inputFileconst System::String&The input file name.
outputFileconst System::String&The output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”
saveFormatAspose::Words::SaveFormatSave format. Only image save formats are allowed.

See Also

Converter::ConvertToImages(const System::String&, const System::String&, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&) method

Converts the pages of the specified input file to image files using the specified save options.

static void Aspose::Words::LowCode::Converter::ConvertToImages(const System::String &inputFile, const System::String &outputFile, const System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions> &saveOptions)
ParameterTypeDescription
inputFileconst System::String&The input file name.
outputFileconst System::String&The output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”
saveOptionsconst System::SharedPtr<Aspose::Words::Saving::ImageSaveOptions>&Image save options.

See Also