Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add path to get jai_core.jar

...

For AIX, Sun support has the following: "JAI has native acceleration for the above but it also works in pure Java mode. So as long as you have an appropriate JDK for AIX (1.3 or later, I believe), you should be able to use it. You can download any of them, extract just the jars, and put those in your $CLASSPATH."Download the

Code Block
curl -O http://download.java.net/media/jai-imageio/builds/release/1.1/jai_imageio

...

For these filters you do NOT have to worry about the native code, just the JAR, so choose a download for any platform.

Code Block
-1_1-lib-linux-i586.tar.gz
tar xzf jai_imageio-1_1-lib-linux-i586.tar.gz
curl -O http://download.java.net/media/jai-imageio/builds/release/1._1_2_01/jai_imageio-1_1_2_01-lib-linux-i586.tar.gz
tar xzf jai_imageio-1_1_2_01-lib-linux-i586.tar.gz
 

The preceding example leaves the JAR in jai_imageio-1_1/lib/jai_imageio.jar . Now install it in your local Maven repository, e.g.: (changing the path after file= if necessary)

...