All Packages Class Hierarchy This Package Previous Next Index
Class fi.faidon.jis.TIFFImageSaver
java.lang.Object
|
+----fi.faidon.jis.ImageSaverInterface
|
+----fi.faidon.jis.TIFFImageSaver
- public class TIFFImageSaver
- extends ImageSaverInterface
- implements Serializable, ImageConsumer.
Class for saving an image in the TIFF format. Only uncompressed
supported for the moment.
-
FORMAT_CODE
-
-
FORMAT_COMPLETE_NAME
-
-
FORMAT_EXTENSION
-
-
TIFFImageSaver()
-
-
checkSave()
- Return ImageObserver constants for indicating the state of the image saving.
-
getFormatCode()
- ImageSaverInterface method implementations.
-
getFormatExtension()
-
-
getFormatString()
-
-
imageComplete(int)
- Get imageComplete message so that we can close the output file.
-
saveIt()
- Save the image.
-
setColorModel(ColorModel)
-
-
setDimensions(int, int)
- Override the source image's dimensions and pass the dimensions
of the rectangular cropped region to the ImageConsumer.
-
setHints(int)
-
-
setPixels(int, int, int, int, ColorModel, byte[], int, int)
- Write the pixels into the file as RGB data.
-
setPixels(int, int, int, int, ColorModel, int[], int, int)
- Write the pixels into the file as RGB data.
-
setProperties(Hashtable)
- ImageConsumer method implementations.
FORMAT_CODE
public static final String FORMAT_CODE
FORMAT_COMPLETE_NAME
public static final String FORMAT_COMPLETE_NAME
FORMAT_EXTENSION
public static final String FORMAT_EXTENSION
TIFFImageSaver
public TIFFImageSaver()
getFormatCode
public String getFormatCode()
- ImageSaverInterface method implementations.
- Overrides:
- getFormatCode in class ImageSaverInterface
getFormatString
public String getFormatString()
- Overrides:
- getFormatString in class ImageSaverInterface
getFormatExtension
public String getFormatExtension()
- Overrides:
- getFormatExtension in class ImageSaverInterface
saveIt
public boolean saveIt()
- Save the image.
- Overrides:
- saveIt in class ImageSaverInterface
checkSave
public int checkSave()
- Return ImageObserver constants for indicating the state of the image saving.
- Overrides:
- checkSave in class ImageSaverInterface
setProperties
public void setProperties(Hashtable props)
- ImageConsumer method implementations.
setHints
public void setHints(int hintflags)
setColorModel
public void setColorModel(ColorModel model)
setDimensions
public void setDimensions(int w,
int h)
- Override the source image's dimensions and pass the dimensions
of the rectangular cropped region to the ImageConsumer.
- See Also:
-
setPixels
public void setPixels(int x,
int y,
int w,
int h,
ColorModel model,
byte pixels[],
int off,
int scansize)
- Write the pixels into the file as RGB data.
- See Also:
-
setPixels
public void setPixels(int x,
int y,
int w,
int h,
ColorModel model,
int pixels[],
int off,
int scansize)
- Write the pixels into the file as RGB data.
- See Also:
-
imageComplete
public void imageComplete(int status)
- Get imageComplete message so that we can close the output file.
- See Also:
-
All Packages Class Hierarchy This Package Previous Next Index