LFileSettings::SetDOCOptions

#include "ltwrappr.h"

static L_INT LFileSettings::SetDOCOptions(pOptions)

const pFILEDOCOPTIONS pOptions;

pointer to a structure

Sets the file options used by LEADTOOLS when loading DOC files.

Parameter

Description

pOptions

Pointer to a structure that contains the options used when loading DOC files.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

The values set by this function are valid for the current thread. To change the values used by the current thread, this function must be called again.

To get the current options used when loading DOC file, call LFileSettings::GetDOCOptions.

Required DLLs and Libraries

LTFIL

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

Win32, x64.

See Also

Functions:

LFileSettings::GetDOCOptions

Topics:

Loading and Saving Images

 

Raster Image Functions: Loading Files

Example

This example loads a DOC file.

L_INT LFileSettings__SetDOCOptionsExample(L_TCHAR* pszDOCFileName, LBitmap* pBitmap) 
{ 
   L_INT nRet; 
   FILEDOCOPTIONS DOCOptions; 
   /* Get the current DOC options */    
   nRet = LFileSettings::GetDOCOptions(&DOCOptions,sizeof(FILEDOCOPTIONS)); 
   if(nRet != SUCCESS) 
      return nRet; 
   DOCOptions.nBitsPerPixel = 24; 
   DOCOptions.uFlags = 0; 
   /* Set new DOC options */ 
   nRet = LFileSettings::SetDOCOptions(&DOCOptions);  
   if(nRet != SUCCESS) 
      return nRet; 
   /* Now load the DOC file */ 
   nRet = pBitmap->Load(pszDOCFileName,  
                  0,  
                  ORDER_RGB,  
                  NULL,  
                  NULL );  
   if(nRet != SUCCESS) 
      return nRet; 
   return SUCCESS; 
} 

Help Version 20.0.2020.4.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help