The book has been a big success. The second print came out in December 2001. Thanks to all those who have sent the comments, suggestions, and corrections.Errata
In the code snippet in the next paragraph, add "RenderingHints."
to each of the parmeters passed to the RenderingHints constructor. For
example, the first parameter should read as RenderingHints.KEY_RENDERING.
Click here for the entire createBandedRGBImage()
method, which contains the above changes.
Changes made to the JAI code:
Changed the type of 2nd argument to javax.media.jai.DFTScalingType
Changed the type of 3nd argument to
javax.media.jai.DFTDataNature
ii. CompositeImages()
Changed the type of 4th argument to
javax.media.jai.CompositeDestAlpha (from int)
iii. medianFilterImage()
Changed the type of 2nd argument to
javax.media.jai.MedianFilterShape (from int)
Related changes in the app.RunOperators
class:
a. In the inner class FilterOpPanel,
changed the types of variables masks and currentMask to MedianFilterShape.
Last modified January 2, 2002