A C D G L M O P R S T V

A

apply(BufferedImage, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
apply(BufferedImage, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to apply, in the order given, 1 or more BufferedImageOps to a given BufferedImage and return the result.
AsyncScalr - Class in org.imgscalr
Class used to provide the asynchronous versions of all the methods defined in Scalr for the purpose of efficiently handling large amounts of image operations via a select number of processing threads asynchronously.
AsyncScalr() - Constructor for class org.imgscalr.AsyncScalr
 

C

crop(BufferedImage, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
crop(BufferedImage, int, int, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
crop(BufferedImage, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to crop the given src image from the top-left corner and applying any optional BufferedImageOps to the result before returning it.
crop(BufferedImage, int, int, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to crop the given src image and apply any optional BufferedImageOps to it before returning the result.

D

DEBUG - Static variable in class org.imgscalr.Scalr
Flag used to indicate if debugging output has been enabled by setting the "imgscalr.debug" system property to true.
DEBUG_PROPERTY_NAME - Static variable in class org.imgscalr.Scalr
System property name used to define the debug boolean flag.

G

getService() - Static method in class org.imgscalr.AsyncScalr
Used to get access to the internal ExecutorService used by this class to process scale operations.

L

LOG_PREFIX - Static variable in class org.imgscalr.Scalr
Prefix to every log message this library logs.
LOG_PREFIX_PROPERTY_NAME - Static variable in class org.imgscalr.Scalr
System property name used to define a custom log prefix.

M

Main - Class in org.imgscalr
 
Main() - Constructor for class org.imgscalr.Main
 
main(String[]) - Static method in class org.imgscalr.Main
 

O

OP_ANTIALIAS - Static variable in class org.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.
OP_BRIGHTER - Static variable in class org.imgscalr.Scalr
A RescaleOp used to make any input image 10% brighter.
OP_DARKER - Static variable in class org.imgscalr.Scalr
A RescaleOp used to make any input image 10% darker.
OP_GRAYSCALE - Static variable in class org.imgscalr.Scalr
A ColorConvertOp used to convert any image to a grayscale color palette.
org.imgscalr - package org.imgscalr
 

P

pad(BufferedImage, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
pad(BufferedImage, int, Color, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
pad(BufferedImage, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to apply padding around the edges of an image using Color.BLACK to fill the extra padded space and then return the result.
pad(BufferedImage, int, Color, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to apply padding around the edges of an image using the given color to fill the extra padded space and then return the result.

R

resize(BufferedImage, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Method, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Mode, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Method, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
resize(BufferedImage, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height no bigger than targetSize and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Method, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height no bigger than targetSize using the given scaling method and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Mode, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height no bigger than targetSize (or fitting the image to the given WIDTH or HEIGHT explicitly, depending on the Scalr.Mode specified) and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to a width and height no bigger than targetSize (or fitting the image to the given WIDTH or HEIGHT explicitly, depending on the Scalr.Mode specified) using the given scaling method and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to the target width and height and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Method, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to the target width and height using the given scaling method and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT explicitly, depending on the Scalr.Mode specified) and apply the given BufferedImageOps (if any) to the result before returning it.
resize(BufferedImage, Scalr.Method, Scalr.Mode, int, int, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Resize a given image (maintaining its original proportion) to the target width and height (or fitting the image to the given WIDTH or HEIGHT explicitly, depending on the Scalr.Mode specified) using the given scaling method and apply the given BufferedImageOps (if any) to the result before returning it.
rotate(BufferedImage, Scalr.Rotation, BufferedImageOp...) - Static method in class org.imgscalr.AsyncScalr
 
rotate(BufferedImage, Scalr.Rotation, BufferedImageOp...) - Static method in class org.imgscalr.Scalr
Used to apply a Scalr.Rotation and then 0 or more BufferedImageOps to a given image and return the result.

S

Scalr - Class in org.imgscalr
Class used to implement performant, high-quality and intelligent image scaling and manipulation algorithms in native Java 2D.
Scalr() - Constructor for class org.imgscalr.Scalr
 
Scalr.Method - Enum in org.imgscalr
Used to define the different scaling hints that the algorithm can use.
Scalr.Mode - Enum in org.imgscalr
Used to define the different modes of resizing that the algorithm can use.
Scalr.Rotation - Enum in org.imgscalr
Used to define the different types of rotations that can be applied to an image during a resize operation.

T

THREAD_COUNT - Static variable in class org.imgscalr.AsyncScalr
Number of threads the internal ExecutorService will use to simultaneously execute scale requests.
THREAD_COUNT_PROPERTY_NAME - Static variable in class org.imgscalr.AsyncScalr
System property name used to set the number of threads the default underlying ExecutorService will use to process async image operations.
THRESHOLD_BALANCED_SPEED - Static variable in class org.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 org.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 org.imgscalr.Scalr.Method
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.imgscalr.Scalr.Mode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.imgscalr.Scalr.Rotation
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.imgscalr.Scalr.Method
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.imgscalr.Scalr.Mode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.imgscalr.Scalr.Rotation
Returns an array containing the constants of this enum type, in the order they are declared.

A C D G L M O P R S T V
Copyright 2011 The Buzz Media, LLC