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.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 | Method and Description |
---|---|
private void |
PNMCodec.save(BilevelImage image) |
private void |
PalmCodec.save(java.io.DataOutput out,
BilevelImage 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 |
ClusteredDotDither.process(GrayIntegerImage in,
BilevelImage out) |
Modifier and Type | Method and Description |
---|---|
private void |
PromotionGray16.process(BilevelImage in,
Gray16Image out) |
private void |
PromotionGray8.process(BilevelImage in,
Gray8Image out) |
private void |
PromotionPaletted8.process(BilevelImage in,
Paletted8Image out) |
private void |
PromotionRGB24.process(BilevelImage in,
RGB24Image out) |
private void |
PromotionRGB48.process(BilevelImage in,
RGB48Image out) |
Modifier and Type | Method and Description |
---|---|
private void |
ReduceToBilevelThreshold.process(GrayIntegerImage in,
BilevelImage out) |
private void |
ReduceShadesOfGray.process(GrayIntegerImage in,
int MASK,
BilevelImage out) |
Modifier and Type | Class and Description |
---|---|
class |
MemoryBilevelImage
An implementation of the
BilevelImage interface that stores image
data in a byte array in memory. |
Modifier and Type | Method and Description |
---|---|
static java.awt.Image |
ImageCreator.convertToAwtImage(BilevelImage image,
int alpha)
Convert a BilevelImage object to an AWT image object.
|