#include "l_bitmap.h"
L_LTFIL_API L_INT L_SetJBIG2Options(pOptions)
pFILEJBIG2OPTIONS pOptions; |
pointer to a FILEJBIG2OPTIONS structure |
Sets the file options used by LEADTOOLS for saving JBIG2 files.
Parameter |
Description |
pOptions |
Pointer to the FILEJBIG2OPTIONS structure that contains the options to be used for saving JBIG2 files. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
The uStructSize member of the FILEJBIG2OPTIONS structure must be set before calling this function.
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.
Required DLLs and Libraries
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. |
Win32, x64, Linux.
Functions: |
|
Topics: |
|
|
This example will make it so the next time you save a JBIG2 file, it will be saved with Template #3
L_INT SetJBIG2OptionsExample(L_VOID)
{
L_INT nRet;
FILEJBIG2OPTIONS JBIG2Options;
// get the current values. I only want to change the template
nRet = L_GetJBIG2Options(&JBIG2Options, sizeof(FILEJBIG2OPTIONS));
if(nRet != SUCCESS)
return nRet;
// set the Image template value to 3
JBIG2Options.ucImageTemplateType = 3;
JBIG2Options.ucTextTemplateType = 3;
// set the compression options. The next time I save a
// JBIG2 file, it will be saved with te mplate # 3
nRet = L_SetJBIG2Options(&JBIG2Options);
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET