---------------------------------------------------------
AISSCache.library
---------------------------------------------------------
Here is a shared library which purpose is to cache AISS (and other) images into
the memory. For now it offers one function ObtainImage() which returns Image
structure to the given image file. If the file is already in memory it returns
immediately, otherwise it tries to load the image from disk.
The Image structures are stored as a list in AISSCache library base, so all
applications share the same images. The images are read using datatypes with
bitmap.image class.
What are the advantages of using the library instead of loading images by
yourself?
* Reduced memory consumption,
* Increased loading speed.
The documentation is included within archive. The library is in libs/ directory
and there is an example of using the library in example/ directory.
I have written this library as a support for my other programs including Icon
Editor which I am working on. I hope it will be useful for other programmers.
This is my first library so feedback is very welcome.
| |