- package magick;
- /**
- * The sole purpouse of this class is to cause the native
- * library to be loaded in SYSTEM classloader whenever a
- * concrete class is used.
- *
- * @author Max Kollegov <Virtual_Max@geocities.com>
- */
- public class MagickLoader {
- static {
- System.loadLibrary("JMagick");
- }
- }