Uses of Class
com.thebuzzmedia.imgscalr.Scalr.Mode

Uses of Scalr.Mode in com.thebuzzmedia.imgscalr
 

Methods in com.thebuzzmedia.imgscalr that return Scalr.Mode
static Scalr.Mode Scalr.Mode.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Scalr.Mode[] Scalr.Mode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.thebuzzmedia.imgscalr with parameters of type Scalr.Mode
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Method scalingMethod, Scalr.Mode resizeMode, int targetSize)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Method scalingMethod, Scalr.Mode resizeMode, int targetSize, BufferedImageOp... ops)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Method scalingMethod, Scalr.Mode resizeMode, int targetWidth, int targetHeight)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Method scalingMethod, Scalr.Mode resizeMode, int targetWidth, int targetHeight, BufferedImageOp... ops)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Mode resizeMode, int targetSize)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Mode resizeMode, int targetSize, BufferedImageOp... ops)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Mode resizeMode, int targetWidth, int targetHeight)
          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.
static BufferedImage Scalr.resize(BufferedImage src, Scalr.Mode resizeMode, int targetWidth, int targetHeight, BufferedImageOp... ops)
          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.
 


Copyright 2011 The Buzz Media, LLC