|
iDRS™ SDK 16
|
Interface for CPdfOperation wrapper. More...
Go to the source code of this file.
Functions | |
| IDRS_ERROR | CPdfOperation_ApplySignature (const idrs_string strInputFilePath, const idrs_string strOutputFilePath, const idrs_string strPassword, const CDigitalSignature argDigitalSignature, const CPdfUpdateParams argPdfUpdateParams, idrs_exception *pargException) |
| Adds a digital signature to an existing PDF document and save the result to another document. | |
| IDRS_ERROR | CPdfOperation_ApplySignature2 (const idrs_string strDocumentFilePath, const idrs_string strPassword, const CDigitalSignature argDigitalSignature, const CPdfUpdateParams argPdfUpdateParams, idrs_exception *pargException) |
| Adds a digital signature to an existing PDF document and save the result in the same document (appending) | |
| IDRS_ERROR | CPdfOperation_ApplySignature3 (IByteStream argInputStream, IByteStream argOutputStream, const idrs_string strPassword, const CDigitalSignature argDigitalSignature, const CPdfUpdateParams argPdfUpdateParams, idrs_exception *pargException) |
| Adds a digital signature to an existing PDF document and save the result to another document. | |
| IDRS_ERROR | CPdfOperation_ApplySignature4 (IByteStream argDocumentStream, const idrs_string strPassword, const CDigitalSignature argDigitalSignature, const CPdfUpdateParams argPdfUpdateParams, idrs_exception *pargException) |
| Adds a digital signature to an existing PDF document and save the result in the same document (appending) | |
| IDRS_ERROR | CPdfOperation_CompressedAsPdf (const idrs_string strInputFilePath, IByteStream argOutputStream, const CPdfOutputParams argPdfOutputParams, idrs_exception *pargException) |
| Loads the input image or PDF document and creates a compressed PDF document. | |
| IDRS_ERROR | CPdfOperation_CompressedAsPdf2 (const idrs_string strInputFilePath, IByteStream argOutputStream, idrs_exception *pargException) |
| Loads the input image or PDF document and creates a compressed PDF document. | |
| IDRS_ERROR | CPdfOperation_CompressedAsPdf3 (const idrs_string strInputFilePath, const idrs_string strOutputFilePath, const CPdfOutputParams argPdfOutputParams, idrs_exception *pargException) |
| Loads the input image or PDF document and creates a compressed PDF document. | |
| IDRS_ERROR | CPdfOperation_CompressedAsPdf4 (const idrs_string strInputFilePath, const idrs_string strOutputFilePath, idrs_exception *pargException) |
| Loads the input image or PDF document and creates a compressed PDF document. | |
Interface for CPdfOperation wrapper.
| IDRS_ERROR CPdfOperation_ApplySignature | ( | const idrs_string | strInputFilePath, |
| const idrs_string | strOutputFilePath, | ||
| const idrs_string | strPassword, | ||
| const CDigitalSignature | argDigitalSignature, | ||
| const CPdfUpdateParams | argPdfUpdateParams, | ||
| idrs_exception * | pargException | ||
| ) |
Adds a digital signature to an existing PDF document and save the result to another document.
| strInputFilePath | Path to the PDF document |
| strOutputFilePath | Path to the new PDF document to create |
| strPassword | Owner password if specified otherwise User password used to open the PDF document. (empty if it is not password-protected) |
| argDigitalSignature | digital signature to apply |
| argPdfUpdateParams | The PDF update parameters |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
IDRS::Module::DocumentOutput
IDRS::Module::ImageFormats with Extension::ImageFormatsPdfInput
| IDRS_ERROR CPdfOperation_ApplySignature2 | ( | const idrs_string | strDocumentFilePath, |
| const idrs_string | strPassword, | ||
| const CDigitalSignature | argDigitalSignature, | ||
| const CPdfUpdateParams | argPdfUpdateParams, | ||
| idrs_exception * | pargException | ||
| ) |
Adds a digital signature to an existing PDF document and save the result in the same document (appending)
| strDocumentFilePath | Path to the PDF document to update |
| strPassword | Owner password if specified otherwise User password used to open the PDF document. (empty if it is not password-protected) |
| argDigitalSignature | digital signature to apply |
| argPdfUpdateParams | The PDF update parameters |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
IDRS::Module::DocumentOutput
IDRS::Module::ImageFormats with Extension::ImageFormatsPdfInput
| IDRS_ERROR CPdfOperation_ApplySignature3 | ( | IByteStream | argInputStream, |
| IByteStream | argOutputStream, | ||
| const idrs_string | strPassword, | ||
| const CDigitalSignature | argDigitalSignature, | ||
| const CPdfUpdateParams | argPdfUpdateParams, | ||
| idrs_exception * | pargException | ||
| ) |
Adds a digital signature to an existing PDF document and save the result to another document.
| argInputStream | Stream opened on the PDF document |
| argOutputStream | Stream to the new PDF document to create |
| strPassword | Owner password if specified otherwise User password used to open the PDF document. (empty if it is not password-protected) |
| argDigitalSignature | digital signature to apply |
| argPdfUpdateParams | The PDF update parameters |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
IDRS::Module::DocumentOutput
IDRS::Module::ImageFormats with Extension::ImageFormatsPdfInput
| IDRS_ERROR CPdfOperation_ApplySignature4 | ( | IByteStream | argDocumentStream, |
| const idrs_string | strPassword, | ||
| const CDigitalSignature | argDigitalSignature, | ||
| const CPdfUpdateParams | argPdfUpdateParams, | ||
| idrs_exception * | pargException | ||
| ) |
Adds a digital signature to an existing PDF document and save the result in the same document (appending)
| argDocumentStream | Stream opened on the PDF document to update |
| strPassword | Owner password if specified otherwise User password used to open the PDF document. (empty if it is not password-protected) |
| argDigitalSignature | digital signature to apply |
| argPdfUpdateParams | The PDF update parameters |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
IDRS::Module::DocumentOutput
IDRS::Module::ImageFormats with Extension::ImageFormatsPdfInput
| IDRS_ERROR CPdfOperation_CompressedAsPdf | ( | const idrs_string | strInputFilePath, |
| IByteStream | argOutputStream, | ||
| const CPdfOutputParams | argPdfOutputParams, | ||
| idrs_exception * | pargException | ||
| ) |
Loads the input image or PDF document and creates a compressed PDF document.
| strInputFilePath | Paths to the input image or PDF document. |
| argOutputStream | Stream to the new PDF document to create |
| argPdfOutputParams | The PDF output parameters to be used to create the output PDF document (optional) |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_ERROR CPdfOperation_CompressedAsPdf2 | ( | const idrs_string | strInputFilePath, |
| IByteStream | argOutputStream, | ||
| idrs_exception * | pargException | ||
| ) |
Loads the input image or PDF document and creates a compressed PDF document.
| strInputFilePath | Paths to the input image or PDF document. |
| argOutputStream | Stream to the new PDF document to create |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_ERROR CPdfOperation_CompressedAsPdf3 | ( | const idrs_string | strInputFilePath, |
| const idrs_string | strOutputFilePath, | ||
| const CPdfOutputParams | argPdfOutputParams, | ||
| idrs_exception * | pargException | ||
| ) |
Loads the input image or PDF document and creates a compressed PDF document.
| strInputFilePath | Paths to the input image or PDF document. |
| strOutputFilePath | Path to the new PDF document to create |
| argPdfOutputParams | The PDF output parameters to be used to create the output PDF document (optional) |
| pargException | Pointer to exception structure that will be filled if an exception occurs |
| IDRS_ERROR CPdfOperation_CompressedAsPdf4 | ( | const idrs_string | strInputFilePath, |
| const idrs_string | strOutputFilePath, | ||
| idrs_exception * | pargException | ||
| ) |
Loads the input image or PDF document and creates a compressed PDF document.
| strInputFilePath | Paths to the input image or PDF document. |
| strOutputFilePath | Path to the new PDF document to create |
| pargException | Pointer to exception structure that will be filled if an exception occurs |