Your preferences have been saved!
» Renderer for RGB images using AWT Image using Java Media - import javax.media.*; import javax.media.renderer.VideoRenderer; import javax.media.Format; import javax.media.format.VideoFormat; import javax.media.format.RGBFormat; import java.awt.*; import java.awt.image.*; import java.awt.color.ColorSpace; import java.awt.event.*; import java.util.Vector;... 14 Feb 12 » TYPE_INT_RGB and TYPE_INT_ARGB are typically used - import java.awt.image.BufferedImage; public class Main {   public static void main(String[] argv) throws Exception {     int width = 100;     int height = 100;     BufferedImage bimage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);     bimage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);   } }... 14 Feb 12 » HSV to RGB - import java.util.ArrayList; import java.util.Collections; import java.util.List; public class ColorHelper {     private final static int H_STEPS = 12;     private final static int S_STEPS = 3;     private final static float S_STEP_VALUE = 0.05f;     private final static float S_MIN_VALUE = 0.15f;     private final static List<String> staticColors ;... 05 Feb 12 » RGB Gray Filter - import java.awt.Image; import java.awt.image.*; import javax.swing.GrayFilter; import javax.swing.Icon; import javax.swing.ImageIcon; import javax.swing.JComponent; /**  * An image filter that turns an icon into a grayscale icon. Used by  * the JGoodies Windows and Plastic L&amp;Fs to create a disabled icon.<p>  *... 05 Feb 12