C D L O R S T V

C

com.thebuzzmedia.imgscalr - package com.thebuzzmedia.imgscalr
 

D

DEBUG - Static variable in class com.thebuzzmedia.imgscalr.Scalr
Flag used to indicate if debugging output has been enabled by setting the "imgscalr.debug" system property to true.
determineScalingMethod(int, int, float) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Used to determine the scaling Scalr.Method that is best suited for scaling the image to the targeted dimensions.

L

log(String, Object...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Helper method used to ensure a message is loggable before it is logged and then pre-pend a universal prefix to all log messages generated by this library to make the log entries easy to parse visually or programmatically.
LOG_PREFIX - Static variable in class com.thebuzzmedia.imgscalr.Scalr
Prefix to every log message this library logs.

O

OP_ANTIALIAS - Static variable in class com.thebuzzmedia.imgscalr.Scalr
A ConvolveOp using a very light "blur" kernel that acts like an anti-aliasing filter (softens the image a bit) when applied to an image.

R

resize(BufferedImage, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize using the scaling method of Scalr.Method.AUTOMATIC.
resize(BufferedImage, Scalr.Mode, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the scaling method of Scalr.Method.AUTOMATIC.
resize(BufferedImage, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize using the scaling method of Scalr.Method.AUTOMATIC and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Mode, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the scaling method of Scalr.Method.AUTOMATIC and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, int, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height using the scaling method of Scalr.Method.AUTOMATIC.
resize(BufferedImage, Scalr.Mode, int, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the scaling method of Scalr.Method.AUTOMATIC.
resize(BufferedImage, int, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height using the scaling method of Scalr.Method.AUTOMATIC and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the scaling method of Scalr.Method.AUTOMATIC and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Method, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize using the given scaling method.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the given scaling method.
resize(BufferedImage, Scalr.Method, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize using the given scaling method and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height of the given targetSize (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the given scaling method and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Method, int, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height using the given scaling method.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, int) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the given scaling method.
resize(BufferedImage, Scalr.Method, int, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height using the given scaling method and applying the given BufferedImageOp to the final result before returning it if one is provided.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Resize a given image (maintaining its proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT depending on the Scalr.Mode specified) using the given scaling method and applying the given BufferedImageOp to the final result before returning it if one is provided.

S

scaleImage(BufferedImage, int, int, Object) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Used to implement a straight-forward image-scaling operation using Java 2D.
scaleImageIncrementally(BufferedImage, int, int, Object) - Static method in class com.thebuzzmedia.imgscalr.Scalr
Used to implement Chris Campbell's incremental-scaling algorithm: http://today.java.net/pub/a/today/2007/04/03/perils -of-image-getscaledinstance.html.
Scalr - Class in com.thebuzzmedia.imgscalr
Class used to implement performant, good-quality and intelligent image scaling algorithms in native Java 2D.
Scalr() - Constructor for class com.thebuzzmedia.imgscalr.Scalr
 
Scalr.Method - Enum in com.thebuzzmedia.imgscalr
Used to define the different scaling hints that the algorithm can use.
Scalr.Mode - Enum in com.thebuzzmedia.imgscalr
Used to define the different modes of resizing that the algorithm can use.

T

THRESHOLD_BALANCED_SPEED - Static variable in class com.thebuzzmedia.imgscalr.Scalr
Threshold (in pixels) at which point the scaling operation using the Scalr.Method.AUTOMATIC method will decide if a Scalr.Method.BALANCED method will be used (if smaller than or equal to threshold) or a Scalr.Method.SPEED method will be used (if larger than threshold).
THRESHOLD_QUALITY_BALANCED - Static variable in class com.thebuzzmedia.imgscalr.Scalr
Threshold (in pixels) at which point the scaling operation using the Scalr.Method.AUTOMATIC method will decide if a Scalr.Method.QUALITY method will be used (if smaller than or equal to threshold) or a Scalr.Method.BALANCED method will be used (if larger than threshold).

V

valueOf(String) - Static method in enum com.thebuzzmedia.imgscalr.Scalr.Method
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.thebuzzmedia.imgscalr.Scalr.Mode
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.thebuzzmedia.imgscalr.Scalr.Method
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.thebuzzmedia.imgscalr.Scalr.Mode
Returns an array containing the constants of this enum type, in the order they are declared.

C D L O R S T V
Copyright 2011 The Buzz Media, LLC