Package ch.randelshofer.media.jpeg
Class CMYKJPEGImageReader
- java.lang.Object
 - 
- javax.imageio.ImageReader
 - 
- ch.randelshofer.media.jpeg.CMYKJPEGImageReader
 
 
 
- 
public class CMYKJPEGImageReader extends javax.imageio.ImageReaderReads a JPEG image with colors in the CMYK color space. 
- 
- 
Constructor Summary
Constructors Constructor Description CMYKJPEGImageReader(CMYKJPEGImageReaderSpi originatingProvider) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.awt.image.BufferedImagecreateRGBAImageFromRGBA(java.awt.image.Raster rgbaRaster, java.awt.color.ICC_Profile rgbaProfile)Creates a buffered image from a raster in the RGBA color space, converting the colors to RGB using the provided CMYK ICC_Profile.static java.awt.image.BufferedImagecreateRGBImageFromCMYK(java.awt.image.Raster cmykRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the CMYK color space, converting the colors to RGB using the provided CMYK ICC_Profile.static java.awt.image.BufferedImagecreateRGBImageFromInvertedYCCK(java.awt.image.Raster ycckRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the inverted YCCK color space, converting the colors to RGB using the provided CMYK ICC_Profile.static java.awt.image.BufferedImagecreateRGBImageFromYCCK(java.awt.image.Raster ycckRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the YCCK color space, converting the colors to RGB using the provided CMYK ICC_Profile.intgetHeight(int imageIndex)javax.imageio.metadata.IIOMetadatagetImageMetadata(int imageIndex)java.util.Iterator<javax.imageio.ImageTypeSpecifier>getImageTypes(int imageIndex)intgetNumImages(boolean allowSearch)javax.imageio.metadata.IIOMetadatagetStreamMetadata()intgetWidth(int imageIndex)booleanisYCCKInversed()java.awt.image.BufferedImageread(int imageIndex, javax.imageio.ImageReadParam param)static java.awt.image.BufferedImageread(javax.imageio.stream.ImageInputStream in, boolean inverseYCCKColors)static java.awt.image.BufferedImagereadImageFromYUVorGray(javax.imageio.stream.ImageInputStream in)Reads a JPEG image from the provided InputStream.static java.awt.image.BufferedImagereadRGBAImageFromRGBA(java.io.InputStream in, java.awt.color.ICC_Profile rgbaProfile)Reads a RGBA JPEG image from the provided InputStream, converting the colors to RGBA using the provided RGBA ICC_Profile.static java.awt.image.BufferedImagereadRGBImageFromCMYK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile)Reads a CMYK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile.static java.awt.image.BufferedImagereadRGBImageFromInvertedYCCK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile)Reads an inverted-YCCK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile.static java.awt.image.BufferedImagereadRGBImageFromYCCK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile)Reads a YCCK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile.voidsetYCCKInversed(boolean newValue)- 
Methods inherited from class javax.imageio.ImageReader
abort, addIIOReadProgressListener, addIIOReadUpdateListener, addIIOReadWarningListener, canReadRaster, dispose, getAspectRatio, getAvailableLocales, getDefaultReadParam, getFormatName, getImageMetadata, getInput, getLocale, getMinIndex, getNumThumbnails, getOriginatingProvider, getRawImageType, getStreamMetadata, getThumbnailHeight, getThumbnailWidth, getTileGridXOffset, getTileGridYOffset, getTileHeight, getTileWidth, hasThumbnails, isIgnoringMetadata, isImageTiled, isRandomAccessEasy, isSeekForwardOnly, read, readAll, readAll, readAsRenderedImage, readerSupportsThumbnails, readRaster, readThumbnail, readTile, readTileRaster, removeAllIIOReadProgressListeners, removeAllIIOReadUpdateListeners, removeAllIIOReadWarningListeners, removeIIOReadProgressListener, removeIIOReadUpdateListener, removeIIOReadWarningListener, reset, setInput, setInput, setInput, setLocale 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
CMYKJPEGImageReader
public CMYKJPEGImageReader(CMYKJPEGImageReaderSpi originatingProvider)
 
 - 
 
- 
Method Detail
- 
getNumImages
public int getNumImages(boolean allowSearch) throws java.io.IOException- Specified by:
 getNumImagesin classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
getWidth
public int getWidth(int imageIndex) throws java.io.IOException- Specified by:
 getWidthin classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
getHeight
public int getHeight(int imageIndex) throws java.io.IOException- Specified by:
 getHeightin classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
getImageTypes
public java.util.Iterator<javax.imageio.ImageTypeSpecifier> getImageTypes(int imageIndex) throws java.io.IOException- Specified by:
 getImageTypesin classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
getStreamMetadata
public javax.imageio.metadata.IIOMetadata getStreamMetadata() throws java.io.IOException- Specified by:
 getStreamMetadatain classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
getImageMetadata
public javax.imageio.metadata.IIOMetadata getImageMetadata(int imageIndex) throws java.io.IOException- Specified by:
 getImageMetadatain classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
read
public java.awt.image.BufferedImage read(int imageIndex, javax.imageio.ImageReadParam param) throws java.io.IOException- Specified by:
 readin classjavax.imageio.ImageReader- Throws:
 java.io.IOException
 
- 
isYCCKInversed
public boolean isYCCKInversed()
- Returns:
 - the YCCKInversed property.
 
 
- 
setYCCKInversed
public void setYCCKInversed(boolean newValue)
- Parameters:
 newValue- the new value
 
- 
read
public static java.awt.image.BufferedImage read(javax.imageio.stream.ImageInputStream in, boolean inverseYCCKColors) throws java.io.IOException- Throws:
 java.io.IOException
 
- 
readRGBImageFromCMYK
public static java.awt.image.BufferedImage readRGBImageFromCMYK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile) throws java.io.IOExceptionReads a CMYK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile. The image data must be in the CMYK color space.Use this method, if you have already determined that the input stream contains a CMYK JPEG image.
- Parameters:
 in- An InputStream, preferably an ImageInputStream, in the JPEG File Interchange Format (JFIF).cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage containing the decoded image converted into the RGB color space.
 - Throws:
 java.io.IOException
 
- 
readRGBAImageFromRGBA
public static java.awt.image.BufferedImage readRGBAImageFromRGBA(java.io.InputStream in, java.awt.color.ICC_Profile rgbaProfile) throws java.io.IOExceptionReads a RGBA JPEG image from the provided InputStream, converting the colors to RGBA using the provided RGBA ICC_Profile. The image data must be in the RGBA color space.Use this method, if you have already determined that the input stream contains a RGBA JPEG image.
- Parameters:
 in- An InputStream, preferably an ImageInputStream, in the JPEG File Interchange Format (JFIF).rgbaProfile- An ICC_Profile for conversion from the RGBA color space to the RGBA color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage containing the decoded image converted into the RGB color space.
 - Throws:
 java.io.IOException
 
- 
readRGBImageFromYCCK
public static java.awt.image.BufferedImage readRGBImageFromYCCK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile) throws java.io.IOExceptionReads a YCCK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile. The image data must be in the YCCK color space.Use this method, if you have already determined that the input stream contains a YCCK JPEG image.
- Parameters:
 in- An InputStream, preferably an ImageInputStream, in the JPEG File Interchange Format (JFIF).cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage containing the decoded image converted into the RGB color space.
 - Throws:
 java.io.IOException
 
- 
readRGBImageFromInvertedYCCK
public static java.awt.image.BufferedImage readRGBImageFromInvertedYCCK(java.io.InputStream in, java.awt.color.ICC_Profile cmykProfile) throws java.io.IOExceptionReads an inverted-YCCK JPEG image from the provided InputStream, converting the colors to RGB using the provided CMYK ICC_Profile. The image data must be in the inverted-YCCK color space.Use this method, if you have already determined that the input stream contains an inverted-YCCK JPEG image.
- Parameters:
 in- An InputStream, preferably an ImageInputStream, in the JPEG File Interchange Format (JFIF).cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage containing the decoded image converted into the RGB color space.
 - Throws:
 java.io.IOException
 
- 
createRGBImageFromYCCK
public static java.awt.image.BufferedImage createRGBImageFromYCCK(java.awt.image.Raster ycckRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the YCCK color space, converting the colors to RGB using the provided CMYK ICC_Profile.- Parameters:
 ycckRaster- A raster with (at least) 4 bands of samples.cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage in the RGB color space.
 
 
- 
createRGBImageFromInvertedYCCK
public static java.awt.image.BufferedImage createRGBImageFromInvertedYCCK(java.awt.image.Raster ycckRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the inverted YCCK color space, converting the colors to RGB using the provided CMYK ICC_Profile.- Parameters:
 ycckRaster- A raster with (at least) 4 bands of samples.cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage in the RGB color space.
 
 
- 
createRGBImageFromCMYK
public static java.awt.image.BufferedImage createRGBImageFromCMYK(java.awt.image.Raster cmykRaster, java.awt.color.ICC_Profile cmykProfile)Creates a buffered image from a raster in the CMYK color space, converting the colors to RGB using the provided CMYK ICC_Profile. As seen from a comment made by 'phelps' at http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4799903- Parameters:
 cmykRaster- A raster with (at least) 4 bands of samples.cmykProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage in the RGB color space.
 
 
- 
createRGBAImageFromRGBA
public static java.awt.image.BufferedImage createRGBAImageFromRGBA(java.awt.image.Raster rgbaRaster, java.awt.color.ICC_Profile rgbaProfile)Creates a buffered image from a raster in the RGBA color space, converting the colors to RGB using the provided CMYK ICC_Profile. As seen from a comment made by 'phelps' at http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4799903- Parameters:
 rgbaRaster- A raster with (at least) 4 bands of samples.rgbaProfile- An ICC_Profile for conversion from the CMYK color space to the RGB color space. If this parameter is null, a default profile is used.- Returns:
 - a BufferedImage in the RGB color space.
 
 
- 
readImageFromYUVorGray
public static java.awt.image.BufferedImage readImageFromYUVorGray(javax.imageio.stream.ImageInputStream in) throws java.io.IOExceptionReads a JPEG image from the provided InputStream. The image data must be in the YUV or the Gray color space.Use this method, if you have already determined that the input stream contains a YUV or Gray JPEG image.
- Parameters:
 in- An InputStream, preferably an ImageInputStream, in the JPEG File Interchange Format (JFIF).- Returns:
 - a BufferedImage containing the decoded image converted into the RGB color space.
 - Throws:
 java.io.IOException
 
 - 
 
 -