Your preferences have been saved!
» 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 » Produces a copy of the supplied image - import java.awt.Graphics; import java.awt.GraphicsConfiguration; import java.awt.GraphicsEnvironment; import java.awt.Transparency; import java.awt.image.BufferedImage; /**  * @author nigel  */ public class Utils {   /**... 06 Feb 12 » Copy Raster - import java.awt.Point; import java.awt.Rectangle; import java.awt.color.ColorSpace; import java.awt.geom.AffineTransform; import java.awt.image.BufferedImage; import java.awt.image.ColorModel; import java.awt.image.ComponentSampleModel; import java.awt.image.DataBuffer; import java.awt.image.DataBufferByte; import java.awt.image.DataBufferInt;... 06 Feb 12 » Copy Area Performance - import java.awt.Color; import java.awt.Graphics; import java.awt.Rectangle; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.SwingUtilities;   public class CopyAreaPerformance extends JComponent implements KeyListener {... 05 Feb 12