Link

Java SGI Reader

JDeli includes a SGI Reader to read SGI images into Java. The SGI Decoder is written in 100% Java with no dependencies.

Key information:

  • 100% Java solution. No dlls or dependencies on native code
  • ColorSpace: RGB, RGBA, GrayScale and Indexed images

Quick start:

JDeli can automatically detect the file type and will use the SGI File Reader

BufferedImage image = JDeli.read(sgiImageFile);

or

SgiDecoder decoder = new SgiDecoder();
BufferedImage image = decoder.read(sgiData);

See the full Javadoc.