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

Contents
[ ]

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

Saves image to stream with default image format - jpeg.

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

See Also

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

Saves image to stream with given page size.

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

See Also

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

Saves image to stream with given page size.

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

See Also

PdfConverter::GetNextImage(System::SharedPtr<System::IO::Stream>, System::SharedPtr<PageSize>, 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(System::SharedPtr<System::IO::Stream> outputStream, System::SharedPtr<PageSize> pageSize, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t quality)
ParameterTypeDescription
outputStreamSystem::SharedPtr<System::IO::Stream>The stream to save the image.
pageSizeSystem::SharedPtr<PageSize>The page size of the image.
formatSystem::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(System::SharedPtr<System::IO::Stream>, System::SharedPtr<System::Drawing::Imaging::ImageFormat>) method

Saves image to stream with given image format.

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

See Also

PdfConverter::GetNextImage(System::SharedPtr<System::IO::Stream>, 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(System::SharedPtr<System::IO::Stream> outputStream, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, double imageWidth, double imageHeight, int32_t quality)
ParameterTypeDescription
outputStreamSystem::SharedPtr<System::IO::Stream>The stream to save the image.
formatSystem::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(System::SharedPtr<System::IO::Stream>, 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(System::SharedPtr<System::IO::Stream> outputStream, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t imageWidth, int32_t imageHeight)
ParameterTypeDescription
outputStreamSystem::SharedPtr<System::IO::Stream>The stream to save the image.
formatSystem::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(System::SharedPtr<System::IO::Stream>, 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(System::SharedPtr<System::IO::Stream> outputStream, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t imageWidth, int32_t imageHeight, int32_t quality)
ParameterTypeDescription
outputStreamSystem::SharedPtr<System::IO::Stream>The stream to save the image.
formatSystem::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(System::SharedPtr<System::IO::Stream>, 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(System::SharedPtr<System::IO::Stream> outputStream, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t quality)
ParameterTypeDescription
outputStreamSystem::SharedPtr<System::IO::Stream>The stream to save the image.
formatSystem::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(System::String) method

Saves image to file with default image format - jpeg.

void Aspose::Pdf::Facades::PdfConverter::GetNextImage(System::String outputFile)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.

See Also

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

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

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

See Also

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

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

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

See Also

PdfConverter::GetNextImage(System::String, System::SharedPtr<PageSize>, 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(System::String outputFile, System::SharedPtr<PageSize> pageSize, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t quality)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.
pageSizeSystem::SharedPtr<PageSize>The page size of the image.
formatSystem::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(System::String, System::SharedPtr<System::Drawing::Imaging::ImageFormat>) method

Saves image to file with the givin image format.

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

See Also

PdfConverter::GetNextImage(System::String, 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(System::String outputFile, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, double imageWidth, double imageHeight, int32_t quality)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.
formatSystem::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(System::String, 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(System::String outputFile, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t imageWidth, int32_t imageHeight)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.
formatSystem::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(System::String, 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(System::String outputFile, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t imageWidth, int32_t imageHeight, int32_t quality)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.
formatSystem::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(System::String, 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(System::String outputFile, System::SharedPtr<System::Drawing::Imaging::ImageFormat> format, int32_t quality)
ParameterTypeDescription
outputFileSystem::StringThe file path and name to save the image.
formatSystem::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