Uses of Class
is.galia.image.ReductionFactor
Packages that use ReductionFactor
Package
Description
Contains classes related to reading/decoding and writing/coding of images
and image metadata.
Contains two main components:
Classes for properties associated with an image.
Contains image processing operations and related classes.
Package in which processors reside.
-
Uses of ReductionFactor in is.galia.codec
Methods in is.galia.codec with parameters of type ReductionFactorModifier and TypeMethodDescriptionAbstractImageIODecoder.decode
(int imageIndex, Region region, double[] scales, ReductionFactor reductionFactor, double[] diffScales, Set<DecoderHint> decoderHints) Attempts to read an image as efficiently as possible, exploiting its tile layout, if possible.Decoder.decode
(int imageIndex, Region region, double[] scales, ReductionFactor reductionFactor, double[] diffScales, Set<DecoderHint> decoderHints) Decodes the region of the image corresponding to the given arguments.protected BufferedImage
AbstractImageIODecoder.readSmallestUsableSubimage
(Region region, double[] scales, ReductionFactor reductionFactor) Reads the smallest image that can fulfill the given ROI and scale from a multi-image file. -
Uses of ReductionFactor in is.galia.codec.gif
Methods in is.galia.codec.gif with parameters of type ReductionFactorModifier and TypeMethodDescriptionGIFDecoder.decode
(int imageIndex, Region region, double[] scales, ReductionFactor reductionFactor, double[] diffScales, Set<DecoderHint> decoderHints) -
Uses of ReductionFactor in is.galia.codec.jpeg
Methods in is.galia.codec.jpeg with parameters of type ReductionFactorModifier and TypeMethodDescriptionJPEGDecoder.decode
(int imageIndex, Region region, double[] scales, ReductionFactor reductionFactor, double[] diffScales, Set<DecoderHint> hints) Override to handle images with incompatible ICC profiles, and also CMYK images, neither of which the Sun JPEGImageReader can do. -
Uses of ReductionFactor in is.galia.codec.tiff
Methods in is.galia.codec.tiff with parameters of type ReductionFactorModifier and TypeMethodDescriptionTIFFDecoder.decode
(int imageIndex, Region region, double[] scales, ReductionFactor reductionFactor, double[] diffScales, Set<DecoderHint> hints) Override that is multi-resolution- and tile-aware. -
Uses of ReductionFactor in is.galia.image
Methods in is.galia.image that return ReductionFactorModifier and TypeMethodDescriptionstatic ReductionFactor
ReductionFactor.forScale
(double scalePercent) Factory method.static ReductionFactor
ReductionFactor.forScale
(double scalePercent, double tolerance) Factory method. -
Uses of ReductionFactor in is.galia.operation
Methods in is.galia.operation that return ReductionFactorModifier and TypeMethodDescriptionabstract ReductionFactor
Scale.getReductionFactor
(Size reducedSize, ScaleConstraint scaleConstraint, int maxFactor) ScaleByPercent.getReductionFactor
(Size reducedSize, ScaleConstraint scaleConstraint, int maxFactor) ScaleByPixels.getReductionFactor
(Size reducedSize, ScaleConstraint scaleConstraint, int maxFactor) Methods in is.galia.operation with parameters of type ReductionFactorModifier and TypeMethodDescriptionabstract Region
Crop.getRegion
(Size reducedSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) Computes an effective crop rectangle in source image coordinates.CropByPercent.getRegion
(Size reducedSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) CropByPixels.getRegion
(Size reducedSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) CropToSquare.getRegion
(Size reducedSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) abstract Size
Scale.getResultingSize
(Size imageSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) ScaleByPercent.getResultingSize
(Size imageSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) ScaleByPixels.getResultingSize
(Size imageSize, ReductionFactor reductionFactor, ScaleConstraint scaleConstraint) -
Uses of ReductionFactor in is.galia.processor
Methods in is.galia.processor with parameters of type ReductionFactorModifier and TypeMethodDescriptionstatic BufferedImage
Java2DUtils.crop
(BufferedImage inImage, Crop crop, ReductionFactor rf, ScaleConstraint scaleConstraint) Crops the given image taking into account a reduction factor.static BufferedImage
Java2DUtils.scale
(BufferedImage inImage, Scale scale, ScaleConstraint scaleConstraint, ReductionFactor reductionFactor, boolean isLinear) Scales an image, taking an already-applied reduction factor into account.