L_DlgFileConversion

#include "l_bitmap.h"

L_LTDLG_API L_INT L_DlgFileConversion(hWndOwner, pDlgParams)

Displays the File Conversion dialog box, and gets the options for converting files.

Parameters

L_HWND hWndOwner

Handle of the window, which owns the dialog.

LPFILECONVERSIONDLGPARAMS pDlgParams

Pointer to a FILECONVERSIONDLGPARAMS structure to be updated with the values entered by the user through the dialog. Set members of this structure, before calling this function, to set the dialogs initial values.

Comments

The File Conversion dialog.

✎ NOTE

In the File List in the Source Files(s), the file types listed below are only supported in 32-bit platforms:

  • Canon RAW Format (*.crw)
  • DJVU (*.djv)
  • Kodak Digital Camera KDC (*.kdc)
  • Kodak Photo CD (*.pcd)
  • Profession Digital Camera (*.dcr)

Returns

Value Meaning
SUCCESS_DLG_CLOSE The "Close" button was pressed, and the dialog exited successfully.
SUCCESS_DLG_CANCEL The "Cancel" button was pressed, and the dialog exited successfully.
< 1 An error occurred. Refer to Return Codes.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT DlgFileConversionExample(HWND hWnd) 
{ 
   L_INT nRet; 
   FILECONVERSIONDLGPARAMS DlgParams ; 
 
   memset ( &DlgParams, 0, sizeof ( FILECONVERSIONDLGPARAMS ) ) ; 
 
   DlgParams.uStructSize        = sizeof ( FILECONVERSIONDLGPARAMS ) ; 
   DlgParams.uOverwrite         = DLG_FILECONVERSION_OVERWRITE_SKIP ; 
   DlgParams.pFileFormats       = NULL ; 
   DlgParams.nFileFormatsCount  = 0 ; 
   DlgParams.bUseLogReport      = TRUE ; 
   DlgParams.bRemoveSrcFile     = FALSE ; 
   DlgParams.bShowFullPath      = TRUE ; 
   DlgParams.bUseOriginalFolder = TRUE ; 
   DlgParams.pszSrcFileList     = NULL ; 
   DlgParams.uDlgFlags          = DLG_FILECONVERSION_SHOW_PREVIEW        | 
                                  DLG_FILECONVERSION_SHOW_LOADOPTIONS    | 
                                  DLG_FILECONVERSION_SHOW_FILEINFO       | 
                                  DLG_FILECONVERSION_SHOW_PREVIEW_PAGES  | 
                                  DLG_FILECONVERSION_SHOW_RESIZE         | 
                                  DLG_FILECONVERSION_SHOW_ROTATE         | 
                                  DLG_FILECONVERSION_SHOW_NAMINGTEMPLATE | 
                                  DLG_FILECONVERSION_SHOW_OVERWRITE      | 
                                  DLG_FILECONVERSION_SHOW_OVERWRITE_ALL  | 
                                  DLG_FILECONVERSION_SHOW_ADD            | 
                                  DLG_FILECONVERSION_SHOW_ADDFOLDER      | 
                                  DLG_FILECONVERSION_SHOW_REMOVE         | 
                                  DLG_FILECONVERSION_SHOW_SELECTALL      | 
                                  DLG_FILECONVERSION_SHOW_DELETEORIGINAL ; 
 
   nRet = L_DlgInit ( DLG_INIT_COLOR ) ; 
   if(nRet != SUCCESS && nRet != ERROR_DLG_ALREADYINITIATED) 
      return nRet; 
   nRet = L_DlgFileConversion ( hWnd, &DlgParams ) ; 
   if(nRet < 1) 
      return nRet; 
   nRet = L_DlgFree () ; 
   if(nRet != SUCCESS) 
      return nRet; 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Common Dialog C API Help