Your preferences have been saved!
» Reads an image in a file and creates a thumbnail - import java.awt.Color; import java.awt.Graphics2D; import java.awt.Image; import java.awt.RenderingHints; import java.awt.Toolkit; import java.awt.geom.AffineTransform; import java.awt.image.BufferedImage; import java.io.FileOutputStream; import java.io.OutputStream; import javax.swing.ImageIcon;... 14 Feb 12 » Creates a scaled copy of the source image. - import java.awt.Graphics2D; import java.awt.Image; import java.awt.image.BufferedImage; /**  * Provides utility methods for handling images (<tt>java.awt.BufferedImage</tt>  * )  *   * @author Ian McDonagh  */ public class ImageUtil {... 14 Feb 12 » Creates a new raster copy - import java.awt.Composite; import java.awt.Graphics2D; import java.awt.GraphicsConfiguration; import java.awt.GraphicsDevice; import java.awt.Point; import java.awt.Rectangle; import java.awt.RenderingHints; import java.awt.Shape; import java.awt.color.ColorSpace; import java.awt.geom.AffineTransform;... 06 Feb 12 » Creates a transparent icon. - import java.awt.image.BufferedImage; import java.util.Arrays; import javax.swing.Icon; import javax.swing.ImageIcon; public final class ImageUtils {   /**    * Creates a transparent image.  These can be used for aligning menu items.    *    * @param width  the width.... 06 Feb 12 » Creates and returns a buffered version of the specified image. - import java.awt.Graphics; import java.awt.Image; import java.awt.image.BufferedImage; public class ImageUtil {   /**    * Creates and returns a buffered version of the specified image.    *    * @param image the image to create a buffered image for    * @return a buffered image based on the specified image    */... 04 Feb 12