L_SetPDFSaveOptions

#include "l_bitmap.h"

L_LTFIL_API L_INT L_SetPDFSaveOptions(pOptions)

Sets the file options used by LEADTOOLS when saving PDF files.

Parameters

pFILEPDFSAVEOPTIONS pOptions

Pointer to a structure which contains the new PDF save options to set

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

Platforms

Win32, x64, Linux.

See Also

Functions

Topics

Example

L_INT SetPDFSaveOptionsExample(L_VOID) 
{ 
   L_INT nRet; 
   FILEPDFSAVEOPTIONS pdfSaveOptions; 
 
   nRet = L_GetPDFSaveOptions( &pdfSaveOptions, sizeof( pdfSaveOptions ) ); 
   if(nRet != SUCCESS) 
      return nRet; 
   if(strlen( (L_CHAR *)pdfSaveOptions.szOwnerPassword ) > 0 || 
      strlen( (L_CHAR *)pdfSaveOptions.szUserPassword ) > 0 ) 
   { 
      /* protection enabled ...so change the access right */ 
      pdfSaveOptions.uStructSize = sizeof( pdfSaveOptions ); 
      pdfSaveOptions.dwEncryptFlags |= PDF_SECURITYFLAGS_REV2_PRINTDOCUMENT; 
      if( pdfSaveOptions.b128bit ) 
      { 
         /* faithful printing for revision 3 method */  
         pdfSaveOptions.dwEncryptFlags |= PDF_SECURITYFLAGS_REV3_PRINTFAITHFUL; 
      } 
 
      nRet = L_SetPDFSaveOptions( &pdfSaveOptions ); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   return SUCCESS; 
} 
Help Version 21.0.2023.2.15
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.