L_Jp2SaveList

#include "l_bitmap.h"

L_LTJP2_API L_INT EXT_FUNCTION L_Jp2SaveList(hJp2, pszFile, hList, eFormat, nBitsPerPixel, nQFactor, pSaveOptions, pSaveCallBack, pUserData)

L_HJP2 hJp2;

JPEG 2000 engine handle

L_TCHAR * pszFile;

JPEG 2000 file name

HBITMAPLIST hList;

handle to the list of bitmaps

eJP2FILEFORMAT eFormat;

output file format

L_INT nBitsPerPixel;

resulting files pixel depth

L_INT nQFactor;

quality factor

pSAVEFILEOPTION pSaveOptions;

pointer to optional extended save options

FILESAVECALLBACK pSaveCallBack;

optional callback function

L_VOID * pUserData;

pointer to more parameters for the callback

Saves a list of bitmaps, to a file in any supported JPEG 2000 format.  

Parameter

Description

hJp2

JPEG 2000 engine handle that was created by the L_Jp2Create function.

pszFile

Character string that contains the name of the JPEG 2000 file.

hList

Handle to the list of bitmaps.

eFormat

Output JPEG 2000 file format.

nBitsPerPixel

Resulting files pixel depth. Possible values are: 8, 12, 16, 24, 32, 48, 64, and 0. Zero [0] means that each bitmap will be saved with its bits per pixel value, if that value is equal to one of the possible values (8, 12, 16, 24, 32, 48, or 64). If it is not one of the possible values, it will return: ERROR_J2K_UNSUPPORTED.

nQFactor

Quality factor. This value determines the degree of loss in the compression process. Possible values are from 0 to 255. Zero (0) represents lossless compression. Values between 1 and 255 are interpreted as a compression ratio.

pSaveOptions

Pointer to optional extended save options. Pass NULL to use the default save options.

pSaveCallBack

Optional callback function for additional processing.

If you do not provide a callback function, pass NULL.

If you provide a callback function, use the function pointer as the value of this parameter.

The callback function must adhere to the syntax described in FILESAVECALLBACK.

pUserData

Void pointer you can use to pass one or more additional parameters used by the callback function.

To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID *. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure.

If additional parameters are not needed, pass NULL.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

L_Jp2SaveList saves a list of bitmaps, to a file in any supported JPEG 2000 format. However, note that the JPEG 2000 part 1 (JP2) file format does not support multiple codestreams. Therefore, if eFormat passes JP2, only the first bitmap in the list will be saved. All of the currently-set engines boxes will also be saved in this file.

Required DLLs and Libraries

LTJP2
LFJ2K
LTIMGEFX

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:

L_Jp2Read, L_Jp2ReadList, L_Jp2ReadComposite, L_Jp2ReadFrames, L_Jp2Save, L_Jp2SaveComposite, L_Jp2AppendFrames, L_Jp2ReadMemory, L_Jp2ReadListMemory, L_Jp2ReadCompositeMemory, L_Jp2ReadFramesMemory, L_Jp2SaveMemory, L_Jp2SaveListMemory, L_Jp2SaveCompositeMemory, L_Jp2AppendFramesMemory, L_SaveBitmapList

Topics:

Programming with JPEG 2000 Features

Programming with JPX Features

 

Raster Image Functions: Working with JPEG 2000

 

Raster Image Functions: Working with JPX

Example

This example saves/loads bitmap list in JPEG 2000 file format

#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName 
L_INT Jp2SaveListExample(L_UINT8 * pXMLData, L_SIZE_T uSize) 
{ 
   L_HJP2 hEngine; 
   L_INT  nRet; 
   HBITMAPLIST hList; 
   L_JP2_XML_BOX XMLBox; 
   pL_JP2_MPEG7_BOX pMPEG7Box; 
   L_UINT uNumOfMPEG7; 
   /*Create JPEG  2000 engine handle*/ 
   hEngine = L_Jp2Create(); 
   /*Load an image*/ 
   nRet = L_Jp2ReadList(hEngine,MAKE_IMAGE_PATH(TEXT("image1.jp2")),&hList,0,ORDER_BGR,NULL, NULL, NULL, NULL); 
   if(nRet != SUCCESS) 
      return nRet; 
   /*Read MPEG7 boxes*/ 
   L_Jp2GetBoxes(hEngine, L_JPXB_MPEG7, (L_VOID**)&pMPEG7Box,&uNumOfMPEG7); 
   /*Reset all engine boxes*/ 
   L_Jp2ResetBoxes(hEngine); 
   /*Set JPX Engine Boxes*/ 
   if(uNumOfMPEG7) 
   { 
      L_Jp2SetBoxes(hEngine,L_JPXB_MPEG7,pMPEG7Box,uNumOfMPEG7); 
   } 
   /*Create an XML box*/ 
   XMLBox.uStructSize = sizeof(L_JP2_XML_BOX); 
   XMLBox.pData = pXMLData; 
   XMLBox.uDataSize = uSize; 
   /*Set XML box of JPX engine*/ 
   L_Jp2SetBoxes(hEngine,L_JPXB_XML,&XMLBox,1); 
   /*Save the image in JPx format*/ 
   nRet = L_Jp2SaveList(hEngine,MAKE_IMAGE_PATH(TEXT("Test.jpx")), hList,LEADJP2_JPX, 24, 5,NULL, NULL, NULL); 
   if(nRet != SUCCESS) 
      return nRet; 
   /*Free MPEG7 boxes*/ 
   if(uNumOfMPEG7) 
      L_Jp2FreeBoxes(hEngine, L_JPXB_MPEG7, pMPEG7Box, uNumOfMPEG7); 
   /*Destroy engine handle*/ 
   L_Jp2Destroy(hEngine); 
   L_DestroyBitmapList(hList); 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C API Help