Aspose::Pdf::Devices::DocumentDevice::Process método

DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document>&, const System::SharedPtr<System::IO::Stream>&) method

Procesa todo el documento y guarda los resultados en un flujo.

void Aspose::Pdf::Devices::DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document> &document, const System::SharedPtr<System::IO::Stream> &output)
ParámetroTipoDescripción
documentoconst System::SharedPtr<Aspose::Pdf::Document>&El documento a procesar.
outputconst System::SharedPtr<System::IO::Stream>&Define el flujo donde se almacenan los resultados del procesamiento.

Ver también

DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document>&, const System::String&) method

Procesa todo el documento y guarda los resultados en un archivo.

void Aspose::Pdf::Devices::DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document> &document, const System::String &outputFileName)
ParámetroTipoDescripción
documentoconst System::SharedPtr<Aspose::Pdf::Document>&El documento a procesar.
outputFileNameconst System::String&Define el archivo donde se almacenan los resultados del procesamiento.

Ver también

DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document>&, int32_t, int32_t, const System::String&) method

Procesa ciertas páginas del documento y guarda los resultados en un archivo.

void Aspose::Pdf::Devices::DocumentDevice::Process(const System::SharedPtr<Aspose::Pdf::Document> &document, int32_t fromPage, int32_t toPage, const System::String &outputFileName)
ParámetroTipoDescripción
documentoconst System::SharedPtr<Aspose::Pdf::Document>&El documento a procesar.
fromPageint32_tLa primera página para iniciar el procesamiento.
toPageint32_tLa última página del procesamiento.
outputFileNameconst System::String&Define el archivo donde se almacenan los resultados del procesamiento.

Ver también

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

Cada dispositivo representa alguna operación en el documento, p. ej. podemos convertir el documento pdf a otro formato.

virtual void Aspose::Pdf::Devices::DocumentDevice::Process(System::SharedPtr<Aspose::Pdf::Document> document, int32_t fromPage, int32_t toPage, System::SharedPtr<System::IO::Stream> output)=0
ParámetroTipoDescripción
documentoSystem::SharedPtr<Aspose::Pdf::Document>El documento a procesar.
fromPageint32_tDefine la página desde la cual iniciar el procesamiento.
toPageint32_tDefine la última página a procesar.
outputSystem::SharedPtr<System::IO::Stream>Define el flujo donde se almacenan los resultados del procesamiento.

Ver también