attempting to call native long initJPEGImageWriter(); in JPEGImageWriter ..when 
i call initJPEGImageWriter i get:


java.lang.UnsatisfiedLinkError: JPEGImageWriter.initJPEGImageWriter()


ive read System.loadLibrary("jpeg") in static initialiser is "supposed to load" 
jpeg library:


static {
        java.security.AccessController.doPrivileged(
            new java.security.PrivilegedAction<Void>()
            {
                public Void run() {
System.loadLibrary("jpeg");
                  } //end run
          }); //end doPrivileged/PrivilegedAction
} //end static


is supposed to load library but


when i call initJPEGImageWriter i get


java.lang.UnsatisfiedLinkError: JPEGImageWriter.initJPEGImageWriter()


advice appreciated

Martin
______________________________________________

Reply via email to