L_SetPDFSaveOptions

#include "l_bitmap.h"

L_INT EXT_FUNCTION L_SetPDFSaveOptions(pSaveOptions)

pFILEPDFSAVEOPTIONS pSaveOptions;

/* pointer to a structure */

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

Parameter

Description

pSaveOptions

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

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Required DLLs and Libraries

LTFIL
File format DLLs

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

Platforms

Windows 95 / 98 / Me, Windows 2000 / XP.

See Also

Functions:

L_GetPDFSaveOptions

Topics:

Raster Image Functions: Saving Files

 

Implementing PDF Plug in Features

Example

L_VOID EnablePrintingRight()
{
   FILEPDFSAVEOPTIONS pdfSaveOptions;

   L_GetPDFSaveOptions( &pdfSaveOptions, sizeof( pdfSaveOptions ) );
   if(strlen( pdfSaveOptions.szOwnerPassword ) > 0 ||
       strlen( 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;
      }

      L_SetPDFSaveOptions( &pdfSaveOptions );
   }
}