Hi Gabriella,

Unless you have an old Mac you shouldn't need to install JAI or
ImageIO.  They come pre-installed as part of the OS (I'm running 10.4
on a macbook and it has both).  The jars should be in
/System/Library/Java/Extensions.

http://developer.apple.com/releasenotes/Java/index.html#//apple_ref/doc/uid/TP30000872-TP30000425

The only JAI prob I've had with Geotools on the Mac was getting
nonsense values from convolution when using anything other than a
minimal kernel size.  I talked about that in a recent thread.  And the
problem was actually fixed by turning native lib support *off* like
this:

Properties p = new Properties(System.getProperties());
if (p.getProperty("os.name").compareToIgnoreCase("mac os x") == 0) {
  p.put("com.sun.media.jai.disableMediaLib", "true");
  System.setProperties(p);
}

Michael

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Geotools-gt2-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to