Package | Description |
---|---|
net.sourceforge.jiu.codecs |
Provides classes to read images from and save them to files (or streams) in various file formats.
|
net.sourceforge.jiu.color.analysis |
Contains classes that analyze pixel or sample values and thus determine
certain image properties.
|
net.sourceforge.jiu.color.dithering |
Classes for conversion between color spaces.
|
net.sourceforge.jiu.color.promotion |
Classes to convert JIU image objects to other image types that require more memory.
|
net.sourceforge.jiu.color.reduction |
Classes to convert images to a
lowercolor type. |
net.sourceforge.jiu.data |
Provides classes to store images and data directly related to them.
|
net.sourceforge.jiu.gui.awt |
Classes to interoperate with Java's first GUI toolkit, the AWT (Abstract Windowing Toolkit).
|
Modifier and Type | Field and Description |
---|---|
private Gray8Image |
PSDCodec.gray8Image |
Modifier and Type | Method and Description |
---|---|
private void |
PalmCodec.save(java.io.DataOutput out,
Gray8Image image) |
private void |
PNMCodec.save(Gray8Image image) |
Modifier and Type | Method and Description |
---|---|
static CoOccurrenceMatrix |
MatrixCreator.createCoOccurrenceMatrix(Gray8Image image) |
Modifier and Type | Method and Description |
---|---|
private void |
ErrorDiffusionDithering.process(Gray8Image in,
BilevelImage out) |
private void |
OrderedDither.process(Gray8Image in,
BilevelImage out) |
private void |
ErrorDiffusionDithering.process(Gray8Image in,
Gray8Image out) |
private void |
OrderedDither.process(Gray8Image in,
Gray8Image out) |
Modifier and Type | Method and Description |
---|---|
private void |
PromotionGray8.process(BilevelImage in,
Gray8Image out) |
private void |
PromotionGray16.process(Gray8Image in,
Gray16Image out) |
private void |
PromotionPaletted8.process(Gray8Image in,
Paletted8Image out) |
private void |
PromotionRGB24.process(Gray8Image in,
RGB24Image out) |
private void |
PromotionRGB48.process(Gray8Image in,
RGB48Image out) |
Modifier and Type | Method and Description |
---|---|
private void |
AutoDetectColorType.createGray8FromPaletted8(Paletted8Image in,
Gray8Image out) |
Modifier and Type | Class and Description |
---|---|
class |
MemoryGray8Image
An implementation of
Gray8Image that keeps the complete image in memory. |
Modifier and Type | Method and Description |
---|---|
static java.awt.Image |
ImageCreator.convertToAwtImage(Gray8Image image,
int alpha)
Creates an AWT Image object from a Gray8Image object and an alpha value.
|