Package is.galia.processor
package is.galia.processor
Package in which processors reside.
A processor is an image processing library. Given a reference to a source image, it does the following:
- Acquires the image from a
Decoder
- Applies the
operations
from anOperationList
in order - Writes the result to an
OutputStream
provided by anEncoder
. In this way it is source- and output- agnostic—it doesn't care where the source image is coming from, where the processed variant image is going to, or even what format either of them are in, necessarily.
-
ClassDescriptionCollection of methods for operating on
BufferedImage
s.Encapsulates an image processing engine.Used to obtainProcessor
instances.