LFileSettings::SetPDFSaveOptions

Summary

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

Syntax

#include "ltwrappr.h"

static L_INT LFileSettings::SetPDFSaveOptions(pOptions)

Parameters

const 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.

Comments

The uStructSize member of the FILEPDFSAVEOPTIONS structure must be set before calling this function.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LFileSettings__SetPDFSaveOptionsExample()  
 
{ 
   L_INT nRet; 
   FILEPDFSAVEOPTIONS pdfSaveOptions; 
 
   nRet = LFileSettings::GetPDFSaveOptions( &pdfSaveOptions, sizeof( pdfSaveOptions ) ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   if( strlen( (char *)pdfSaveOptions.szOwnerPassword ) > 0 || 
       strlen( (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 = LFileSettings::SetPDFSaveOptions( &pdfSaveOptions ); 
      if(nRet != SUCCESS) 
         return nRet; 
 
   } 
 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

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