Friends of OpenJDK Today

How does Java handle different Images and ColorSpaces – Part 3

June 22, 2020

Author(s)

  • Mark Stephens

    Entrepreneur and Java software developer, founder and CEO of IDRsolutions

BufferedImage is one of the most useful Java abstractions. It hides all the complexity of different types of images whilst allowing access to the underlying data. Under the hood, a BufferedImage can be many types of image. This is the list of types visible in an IDE.

BufferedImage types

The differences between the types of BufferedImage are:-

  1. Range of Colours (Binary will give back and white only, RGB will provide 24-bit color)
  2. Opacity (only available in ARGB – the A is an 8 bit Alpha channel).
  3. Amount of memory used (ARGB uses the most as 4 bytes per pixel).
  4. Size of the saved file.

A BufferedImage generally uses the RGB, Gray or Binary Color Spaces. Data can be in other formats, and the raw raster data can be loaded and accessed for CMYK and YCCK, but the Colors will not display correctly. BufferedImage provides lots of methods to access the raw image data, including the Raster, pixel and ColorModel used.

All BufferedImages work the same, so the same code can be used to manipulate a BufferedImage. A Graphics2D drawing surface can be obtained directly from an instance of BuggeredImage with getGraphics() and used to draw shapes, text and other images over the original image. All are converted to the Image type used. So a Binary Image will only show black and white and any colors used will be converted.

BufferedImages can be converted into other supported ColorSpaces types by using a ColorConvertOp. Java can be used for Image processing either via manipulating the BufferedImage directly or the Graphics2D object.

So BufferedImage offers a really flexible abstraction which makes it very easy to make use of images in Java. Java developers no longer need to worry about image types and formats.

Java includes support to load and save images in various formats using ImageIO, and other libraries such as Apache Imaging and our JDeli library also offer this feature.

Next time we will talk more about ImageIO and other Image libraries.

Topics:

Author(s)

  • Mark Stephens

    Entrepreneur and Java software developer, founder and CEO of IDRsolutions

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard