New Features
Delphi, C/C++ and Visual Basic ISL APIs are provided, to use ISL with another language you'll first have to convert the header file. There is no guarantee that all future ISL versions will be compatible with all previous versions, so your program should use ISL_GetVersion to check the version that is loaded. This also means that you should put ISL.DLL in the same directory as your program (not just somewhere in the path), to avoid the possibility of a wrong version being loaded.
Using ISL with C/C++
- Add "isl.lib" and include "isl.h" to your project.
- Copy "isl.dll" to your execution file directory.
Using ISL with Delphi
- Add "isl.pas" as unit.
- Copy "isl.dll" to your execution file directory.
Using ISL with Visual Basic
- Add "isl.bas" as module.
- Copy "isl.dll" to your execution file directory.
C/C++ Examples
- ISL_Example_1 - Executes script from file.
- ISL_Example_2 - Executes script from memory.
- ISL_Example_3 - Generates an animation.
- ISL_Example_4 - Executes script on image.
- ISL_Example_5 - Using the effects on image.
|