support GIF or TIFF with LZW compression. Two examples are provided showing how to unlock the LZW support. They are beneath the list of unlock keys. The first one uses our API, the second will work for all other interfaces. More information about the function used to unlock support can be found in our help files. Simply type the function name in the "Index" tab.
Also, two examples are provided to show how make sure the support was unlocked.
Make sure to call this function before calling any other LEADTOOLS function. This function is global to our library.
Unlock keys for each version LZW was supported.
Version 14:
L_KEY_GIFLZW = "GJmtRtHS"
L_KEY_TIFLZW = "NhY5543d"
Version 13:
L_KEY_GIFLZW = "JnjmyyTss"
L_KEY_TIFLZW = "JGgUy78FRRx"
Version 12:
L_KEY_GIFLZW = "sg8Z2XkjL"
L_KEY_TIFLZW = "gZWEhj9ZX2j"
Version 11:
L_KEY_GIFLZW = "ou82Ohmy1"
L_KEY_TIFLZW = "drdo0IwEfJK"
Version 10:
L_KEY_GIFLZW = "78BY1jl78"
L_KEY_TIFLZW = "oam5302FDio"
Version 9 -> Version 7:
L_KEY_GIFLZW = "0K3RV9UY3EY"
L_KEY_TIFLZW = "9LE75L0FDXHK"
How to unlock support for LZW:
API - L_UnlockSupport( L_SUPPORT_GIFLZW, L_KEY_GIFLZW );
API - L_UnlockSupport( L_SUPPORT_TIFLZW, L_KEY_TIFLZW );
All others - UnlockSupport( L_SUPPORT_GIFLZW, L_KEY_GIFLZW )
All others - UnlockSupport( L_SUPPORT_TIFLZW, L_KEY_TIFLZW )
How to make sure the support is unlocked:
API - L_IsSupportLocked( L_SUPPORT_GIFLZW );
API - L_IsSupportLocked( L_SUPPORT_TIFLZW );
All others - IsSupportLocked( L_SUPPORT_GIFLZW )
All others - IsSupportLocked( L_SUPPORT_TIFLZW )