Aspose::Pdf::Facades::PdfExtractor::GetNextImage método

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

Recupera la siguiente imagen del archivo PDF y la almacena en un flujo.

bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream)
ParámetroTipoDescripción
outputStreamconst System::SharedPtr<System::IO::Stream>&Flujo donde se guardarán los datos de la imagen

ReturnValue

True en caso de que la imagen se extraiga correctamente.

Ver también

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

Recupera la siguiente imagen del archivo PDF y la almacena en un flujo con el formato de imagen especificado.

bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(const System::SharedPtr<System::IO::Stream> &outputStream, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParámetroTipoDescripción
outputStreamconst System::SharedPtr<System::IO::Stream>&Flujo donde se guardarán los datos de la imagen
formatoconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&El formato de la imagen.

ReturnValue

True en caso de que la imagen se extraiga correctamente.

Ver también

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

Recupera la siguiente imagen del documento PDF. Note: ExtractImage debe llamarse antes de usar este método.

bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(const System::String &outputFile)
ParámetroTipoDescripción
outputFileconst System::String&Archivo donde se almacenará la imagen

ReturnValue

True si la imagen se extrae correctamente

Ver también

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

Recupera la siguiente imagen del documento PDF con el formato de imagen especificado. Note: ExtractImage debe llamarse antes de usar este método.

bool Aspose::Pdf::Facades::PdfExtractor::GetNextImage(const System::String &outputFile, const System::SharedPtr<System::Drawing::Imaging::ImageFormat> &format)
ParámetroTipoDescripción
outputFileconst System::String&Archivo donde se almacenará la imagen
formatoconst System::SharedPtr<System::Drawing::Imaging::ImageFormat>&El formato de la imagen.

ReturnValue

True si la imagen se extrae correctamente

Ver también