Uses of Interface
net.coobird.thumbnailator.resizers.Resizer
-
Packages that use Resizer Package Description net.coobird.thumbnailator This package contains classes which provide the core functionalities of Thumbnailator, includingThumbnails, the entry point for most use cases of Thumbnailator.net.coobird.thumbnailator.builders This package provides classes which provides convenient builders for classes which are used by Thumbnailator.net.coobird.thumbnailator.makers This package provides classes which can be used to make thumbnails given parameters to create the images.net.coobird.thumbnailator.resizers This package provides classes which perform image resizing operations which is used to create thumbnails with Thumbnailator. -
-
Uses of Resizer in net.coobird.thumbnailator
Methods in net.coobird.thumbnailator that return Resizer Modifier and Type Method Description ResizerThumbnailParameter. getResizer()Returns the defaultResizerthat will be used when performing the resizing operation to create a thumbnail.private ResizerThumbnails.Builder. makeResizer(ScalingMode mode)Returns aResizerwhich is suitable for the current builder state.Methods in net.coobird.thumbnailator with parameters of type Resizer Modifier and Type Method Description Thumbnails.Builder<T>Thumbnails.Builder. resizer(Resizer resizer)Sets the resizing operation to use when creating the thumbnail.Constructors in net.coobird.thumbnailator with parameters of type Resizer Constructor Description ThumbnailParameter(double widthScalingFactor, double heightScalingFactor, Region sourceRegion, boolean keepAspectRatio, java.lang.String outputFormat, java.lang.String outputFormatType, float outputQuality, int imageType, java.util.List<ImageFilter> filters, Resizer resizer, boolean fitWithinDimensions, boolean useExifOrientation)Creates an object holding the parameters needed in order to make a thumbnail.ThumbnailParameter(java.awt.Dimension thumbnailSize, Region sourceRegion, boolean keepAspectRatio, java.lang.String outputFormat, java.lang.String outputFormatType, float outputQuality, int imageType, java.util.List<ImageFilter> filters, Resizer resizer, boolean fitWithinDimensions, boolean useExifOrientation)Creates an object holding the parameters needed in order to make a thumbnail. -
Uses of Resizer in net.coobird.thumbnailator.builders
Methods in net.coobird.thumbnailator.builders with parameters of type Resizer Modifier and Type Method Description ThumbnailParameterBuilderThumbnailParameterBuilder. resizer(Resizer resizer)Sets theResizerto use when performing the resizing operation to create the thumbnail. -
Uses of Resizer in net.coobird.thumbnailator.makers
Methods in net.coobird.thumbnailator.makers with parameters of type Resizer Modifier and Type Method Description ThumbnailMakerThumbnailMaker. resizer(Resizer resizer)Sets theResizerwhich is used for the resizing operation. -
Uses of Resizer in net.coobird.thumbnailator.resizers
Classes in net.coobird.thumbnailator.resizers that implement Resizer Modifier and Type Class Description classAbstractResizerA class which performs a resize operation on a source image and outputs the result to a destination image.classBicubicResizerImage resizer class using bicubic interpolation for the resizing operation.classBilinearResizerImage resizer class using bilinear interpolation for the resizing operation.classNullResizerAResizerwhich does not actually resize the image.classProgressiveBilinearResizerAResizerwhich performs resizing operations by using progressive bilinear scaling.classResizersThis enum can be used to select a specificResizerin order to perform a resizing operation.Fields in net.coobird.thumbnailator.resizers declared as Resizer Modifier and Type Field Description private ResizerFixedResizerFactory. resizerThe resizer which is to be returned unconditionally by this class.private ResizerResizers. resizerMethods in net.coobird.thumbnailator.resizers that return Resizer Modifier and Type Method Description ResizerDefaultResizerFactory. getResizer()ResizerDefaultResizerFactory. getResizer(java.awt.Dimension originalSize, java.awt.Dimension thumbnailSize)ResizerFixedResizerFactory. getResizer()ResizerFixedResizerFactory. getResizer(java.awt.Dimension originalSize, java.awt.Dimension thumbnailSize)ResizerResizerFactory. getResizer()Returns the defaultResizer.ResizerResizerFactory. getResizer(java.awt.Dimension originalSize, java.awt.Dimension thumbnailSize)Returns a suitableResizer, given theDimensions of the original image and the thumbnail image.Constructors in net.coobird.thumbnailator.resizers with parameters of type Resizer Constructor Description FixedResizerFactory(Resizer resizer)Creates an instance of theFixedResizerFactorywhich returns the speicifedResizerunder all circumstances.Resizers(Resizer resizer)
-