Thumbnails.Builder<T> |
Thumbnails.Builder.addFilter(ImageFilter filter) |
|
Thumbnails.Builder<T> |
Thumbnails.Builder.addFilters(java.util.List<ImageFilter> filters) |
|
Thumbnails.Builder<T> |
Thumbnails.Builder.allowOverwrite(boolean allowOverwrite) |
Specifies whether or not to overwrite files which already exist if
they have been specified as destination files.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.alphaInterpolation(AlphaInterpolation config) |
Sets the alpha interpolation mode when performing the resizing
operation to generate the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.antialiasing(Antialiasing config) |
Sets the antialiasing mode when performing the resizing
operation to generate the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.crop(Position position) |
Crops the thumbnail at the position specified by Position.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.determineOutputFormat() |
Indicates that the output format should be determined from the
available information when writing the thumbnail image.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.dithering(Dithering config) |
Sets the dithering mode when performing the resizing
operation to generate the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.forceSize(int width,
int height) |
Sets the size of the thumbnail.
|
static Thumbnails.Builder<java.io.File> |
Thumbnails.fromFilenames(java.lang.Iterable<java.lang.String> files) |
Indicate to make thumbnails for images with the specified filenames.
|
static Thumbnails.Builder<java.io.File> |
Thumbnails.fromFiles(java.lang.Iterable<java.io.File> files) |
Indicate to make thumbnails from the specified Files.
|
static Thumbnails.Builder<java.awt.image.BufferedImage> |
Thumbnails.fromImages(java.lang.Iterable<java.awt.image.BufferedImage> images) |
Indicate to make thumbnails from the specified BufferedImages.
|
static Thumbnails.Builder<java.io.InputStream> |
Thumbnails.fromInputStreams(java.lang.Iterable<? extends java.io.InputStream> inputStreams) |
Indicate to make thumbnails for images obtained from the specified
InputStreams.
|
static Thumbnails.Builder<java.net.URL> |
Thumbnails.fromURLs(java.lang.Iterable<java.net.URL> urls) |
Indicate to make thumbnails for images with the specified URLs.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.height(int height) |
Sets the height of the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.imageType(int type) |
Sets the image type of the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.keepAspectRatio(boolean keep) |
Sets whether or not to keep the aspect ratio of the original image
for the thumbnail.
|
static Thumbnails.Builder<java.awt.image.BufferedImage> |
Thumbnails.of(java.awt.image.BufferedImage... images) |
Indicate to make thumbnails from the specified BufferedImages.
|
static Thumbnails.Builder<java.io.File> |
Thumbnails.of(java.io.File... files) |
Indicate to make thumbnails from the specified Files.
|
static Thumbnails.Builder<? extends java.io.InputStream> |
Thumbnails.of(java.io.InputStream... inputStreams) |
Indicate to make thumbnails from the specified InputStreams.
|
static Thumbnails.Builder<java.io.File> |
Thumbnails.of(java.lang.String... files) |
Indicate to make thumbnails for images with the specified filenames.
|
static Thumbnails.Builder<java.net.URL> |
Thumbnails.of(java.net.URL... urls) |
Indicate to make thumbnails from the specified URLs.
|
private static Thumbnails.Builder<java.awt.image.BufferedImage> |
Thumbnails.Builder.ofBufferedImages(java.lang.Iterable<java.awt.image.BufferedImage> images) |
|
private static Thumbnails.Builder<java.io.File> |
Thumbnails.Builder.ofFiles(java.lang.Iterable<java.io.File> files) |
|
private static Thumbnails.Builder<java.io.InputStream> |
Thumbnails.Builder.ofInputStreams(java.lang.Iterable<? extends java.io.InputStream> inputStreams) |
|
private static Thumbnails.Builder<java.io.File> |
Thumbnails.Builder.ofStrings(java.lang.Iterable<java.lang.String> filenames) |
|
private static Thumbnails.Builder<java.net.URL> |
Thumbnails.Builder.ofUrls(java.lang.Iterable<java.net.URL> urls) |
|
Thumbnails.Builder<T> |
Thumbnails.Builder.outputFormat(java.lang.String format) |
Sets the compression format to use when writing the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.outputFormatType(java.lang.String formatType) |
Sets the compression format type of the thumbnail to write.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.outputQuality(double quality) |
Sets the output quality of the compression algorithm used to
compress the thumbnail when it is written to an external destination
such as a file or output stream.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.outputQuality(float quality) |
Sets the output quality of the compression algorithm used to
compress the thumbnail when it is written to an external destination
such as a file or output stream.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.rendering(Rendering config) |
Sets the rendering mode when performing the resizing
operation to generate the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.resizer(Resizer resizer) |
Sets the resizing operation to use when creating the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.resizerFactory(ResizerFactory resizerFactory) |
Sets the ResizerFactory object to use to decide what kind of
resizing operation is to be used when creating the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.rotate(double angle) |
Sets the amount of rotation to apply to the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.scale(double scale) |
Sets the scaling factor of the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.scale(double scaleWidth,
double scaleHeight) |
Sets the scaling factor for the width and height of the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.scalingMode(ScalingMode config) |
Sets the resizing scaling mode to use when creating the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.size(int width,
int height) |
Sets the size of the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.sourceRegion(int x,
int y,
int width,
int height) |
Specifies the region of the source image where the thumbnail
will be created from.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.sourceRegion(java.awt.Rectangle region) |
Specifies the region of the source image where the thumbnail
will be created from.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.sourceRegion(Position position,
int width,
int height) |
Specifies the region of the source image where the thumbnail
will be created from.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.sourceRegion(Position position,
Size size) |
Specifies the region of the source image where the thumbnail
will be created from.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.sourceRegion(Region sourceRegion) |
Specifies the region of the source image where the thumbnail
will be created from.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.useExifOrientation(boolean useExifOrientation) |
Sets whether or not to use the Exif metadata when orienting the
thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.useOriginalFormat() |
Sets the compression format to use the same format as the original
image.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.watermark(java.awt.image.BufferedImage image) |
Sets the image of the watermark to apply on the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.watermark(java.awt.image.BufferedImage image,
float opacity) |
Sets the image and opacity of the watermark to apply on
the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.watermark(Watermark w) |
Sets the watermark to apply on the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.watermark(Position position,
java.awt.image.BufferedImage image,
float opacity) |
Sets the image and opacity and position of the watermark to apply on
the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.watermark(Position position,
java.awt.image.BufferedImage image,
float opacity,
int insets) |
Sets the image, opacity, position and insets for the watermark to
apply on to the thumbnail.
|
Thumbnails.Builder<T> |
Thumbnails.Builder.width(int width) |
Sets the width of the thumbnail.
|