Uses of Interface
net.coobird.thumbnailator.resizers.ResizerFactory
-
Packages that use ResizerFactory 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 ResizerFactory in net.coobird.thumbnailator
Fields in net.coobird.thumbnailator declared as ResizerFactory Modifier and Type Field Description private ResizerFactoryThumbnailParameter. resizerFactoryTheResizerFactoryfor obtaining aResizerthat is to be used when performing an image resizing operation.private ResizerFactoryThumbnails.Builder. resizerFactoryMethods in net.coobird.thumbnailator that return ResizerFactory Modifier and Type Method Description ResizerFactoryThumbnailParameter. getResizerFactory()Returns theResizerFactoryfor obtaining aResizerwhich is to be used when performing the resizing operation to create a thumbnail.Methods in net.coobird.thumbnailator with parameters of type ResizerFactory Modifier and Type Method Description Thumbnails.Builder<T>Thumbnails.Builder. resizerFactory(ResizerFactory resizerFactory)Sets theResizerFactoryobject to use to decide what kind of resizing operation is to be used when creating the thumbnail.Constructors in net.coobird.thumbnailator with parameters of type ResizerFactory 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, ResizerFactory resizerFactory, boolean fitWithinDimensions, boolean useExifOrientation)Creates an object holding the parameters needed in order to make a thumbnail.ThumbnailParameter(java.awt.Dimension thumbnailSize, 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, ResizerFactory resizerFactory, boolean fitWithinDimensions, boolean useExifOrientation)Private constructor which sets all the required fields, and performs validation of the given arguments.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, ResizerFactory resizerFactory, boolean fitWithinDimensions, boolean useExifOrientation)Creates an object holding the parameters needed in order to make a thumbnail. -
Uses of ResizerFactory in net.coobird.thumbnailator.builders
Fields in net.coobird.thumbnailator.builders declared as ResizerFactory Modifier and Type Field Description private ResizerFactoryThumbnailParameterBuilder. resizerFactoryMethods in net.coobird.thumbnailator.builders with parameters of type ResizerFactory Modifier and Type Method Description ThumbnailParameterBuilderThumbnailParameterBuilder. resizerFactory(ResizerFactory resizerFactory)Sets theResizerFactoryto use to obtain aResizerwhen performing the resizing operation to create the thumbnail. -
Uses of ResizerFactory in net.coobird.thumbnailator.makers
Fields in net.coobird.thumbnailator.makers declared as ResizerFactory Modifier and Type Field Description protected ResizerFactoryThumbnailMaker. resizerFactoryTheResizerFactorywhich is used to obtain aResizerfor the resizing operation.Methods in net.coobird.thumbnailator.makers with parameters of type ResizerFactory Modifier and Type Method Description ThumbnailMakerThumbnailMaker. resizerFactory(ResizerFactory resizerFactory)Sets theResizerFactorywhich is used to obtain aResizerfor the resizing operation. -
Uses of ResizerFactory in net.coobird.thumbnailator.resizers
Classes in net.coobird.thumbnailator.resizers that implement ResizerFactory Modifier and Type Class Description classDefaultResizerFactoryThis class provides factory methods which provides suitableResizers for a given situation.classFixedResizerFactoryAResizerFactorythat returns a specificResizerunconditionally.Methods in net.coobird.thumbnailator.resizers that return ResizerFactory Modifier and Type Method Description static ResizerFactoryDefaultResizerFactory. getInstance()Returns an instance of this class.
-