November 2002
Intermediate to advanced
848 pages
19h 59m
English
The JAI class primarily contains a set of methods to create RenderedOp objects given an operation, a ParameterBlock object, and a RenderingHints object (refer to Listing 6.1). Its most common method is the static create method, that is,
static public RenderedOp create(String operationName,
ParameterBlock param,
RenderingHints renderingHints)
or if the RenderingHints object is null (meaning that default values should be used), you can use
static public RenderedOp create(String operationName,
ParameterBlock param)
There are also a large number of other JAI create methods that allow you to perform an operation without using a ParameterBlock. In all listings in this chapter, ParameterBlocks will be used in the JAI's create methods, ...