Aspose::Pdf::Facades::PdfConverter::GetNextImage method

Contents
[ ]

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&) method

Saves image to stream with default image format - jpeg.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<PageSize>&) method

Saves image to stream with given page size.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<PageSize> &pageSize)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<PageSize>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&) method

Saves image to stream with given page size.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<PageSize> &pageSize, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<PageSize>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t) method

Saves image to stream with given page size, image format and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<PageSize> &pageSize, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t quality)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&) method

Saves image to stream with given image format.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, double, double, int32_t) method

Saves image to stream with the givin image format, size and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, double imageWidth, double imageHeight, int32_t quality)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthdoubleThe image width, the unit is pixel.
imageHeightdoubleThe image height, the unit is pixel.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t, int32_t) method

Saves image to stream with the givin image format, size and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t imageWidth, int32_t imageHeight)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthint32_tThe image width, the unit is pixel.
imageHeightint32_tThe image height, the unit is pixel.

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t, int32_t, int32_t) method

Saves image to stream with the givin image format, dimensions and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t imageWidth, int32_t imageHeight, int32_t quality)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthint32_tThe image width, the unit is pixel.
imageHeightint32_tThe image height, the unit is pixel.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t) method

Saves image to stream with given image format and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t quality)
ParameterTypeDescription
outputStreamconst System::SharedPtr<System::IO::Stream>&The stream to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::String&) method

Saves image to file with default image format - jpeg.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<PageSize>&) method

Saves image to file with ith given page size and default image format - jpeg.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<PageSize> &pageSize)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<PageSize>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&) method

Saves image to file with given page size and image format.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<PageSize> &pageSize, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<PageSize>&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t) method

Saves image to file with given page size, image format and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<PageSize> &pageSize, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t quality)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
pageSizeconst System::SharedPtr<PageSize>&The page size of the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&) method

Saves image to file with the givin image format.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, double, double, int32_t) method

Saves image to file with the givin image format, image size, and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, double imageWidth, double imageHeight, int32_t quality)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthdoubleThe image width, the unit is pixels.
imageHeightdoubleThe image height, the unit is pixels..
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t, int32_t) method

Saves image to file with the given image format and dimensions.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t imageWidth, int32_t imageHeight)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthint32_tThe image width, the unit is pixel.
imageHeightint32_tThe image height, the unit is pixel.

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t, int32_t, int32_t) method

Saves image to file with the given image format, dimensions and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t imageWidth, int32_t imageHeight, int32_t quality)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
imageWidthint32_tThe image width, the unit is pixel.
imageHeightint32_tThe image height, the unit is pixel.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also

PdfConverter::GetNextImage(const System::String&, const System::SharedPtr<System::Drawing::Imaging::ImageFormat>&, int32_t) method

Saves image to file with given image format and quality.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format, int32_t quality)
ParameterTypeDescription
outputFileconst System::String&The file path and name to save the image.
formatconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&The format of the image.
qualityint32_tThe Jpeg file’s quality (0~100), 0 is lowest and 100 is highest

See Also