You are here: MrSIDSupport > MrSID Readers

MrSID Readers

The MrSID SDK provides a class for reading MrSID imagery. The MrSIDImageReader class supports reading from any MrSID image, MG2, MG3 or MG4. (If the image is a composite, all tiles in the image will be used.) This class provides an interface for querying the tile contents of composite images.

This class supports both stream inputs as well as filenames. The ability to control whether world files are honored is also provided.

The class has initialization parameters to control resource usage by the object. The “memory usage” parameter allows the user to choose to use more memory to hold the MrSID data in memory, for improved performance at the cost of higher memory usage. By limiting the memory usage, certain decode operations may be slower but more images may be opened simultaneously.

Similarly, the “stream usage” parameter allows the user to choose to keep the underlying file handle (or stream) always open or open only when required by the decoder. The always-open mode may reduce file I/O overhead, but at the cost of potentially critical resources (file handles) on some systems.

By default, this class uses multiple threads to perform decoding operations. The class includes a setMaxWorkerThreads() function that you can use to modify the number of threads created. For more information, see "Multi-Threading".