| java Programming Glossary: bi.creategraphicsHow do you create a thumbnail image out of a JPEG in Java? http://stackoverflow.com/questions/1069095/how-do-you-create-a-thumbnail-image-out-of-a-jpeg-in-java  BufferedImage bi getCompatibleImage w h Graphics2D g2d bi.createGraphics double xScale double w source.getWidth double yScale double.. 
 How to smoothen scrolling of JFrame in Java http://stackoverflow.com/questions/11330268/how-to-smoothen-scrolling-of-jframe-in-java  BufferedImage x y BufferedImage.TYPE_INT_RGB Graphics2D g1 bi.createGraphics g1.setColor Color.BLACK g1.fillRect 0 0 x y g1.dispose final.. public void actionPerformed ActionEvent ae  Graphics2D g2 bi.createGraphics  int x1 rand.nextInt x  int x2 rand.nextInt x  int y1 rand.nextInt.. 
 Image resizing and displaying in a JPanel or a JLabel without loss of quality http://stackoverflow.com/questions/12660122/image-resizing-and-displaying-in-a-jpanel-or-a-jlabel-without-loss-of-quality  null BufferedImage.TYPE_INT_RGB Graphics2D g2 bi.createGraphics g2.drawImage img null null FileOutputStream out null try out.. BufferedImage.TYPE_INT_RGB Graphics2D g2d Graphics2D bi.createGraphics g2d.addRenderingHints new RenderingHints RenderingHints.KEY_RENDERING.. BufferedImage.TYPE_INT_RGB Graphics2D g2d Graphics2D bi.createGraphics  g2d.addRenderingHints new RenderingHints RenderingHints.KEY_RENDERING.. 
 How to resize text in java http://stackoverflow.com/questions/13440201/how-to-resize-text-in-java  BufferedImage  w h BufferedImage.TYPE_INT_RGB Graphics2D g bi.createGraphics g.setFont new Font Serif Font.PLAIN f g.setRenderingHint  RenderingHints.KEY_TEXT_ANTIALIASING.. 
 Convert JPanel to image http://stackoverflow.com/questions/1349220/convert-jpanel-to-image  BufferedImage w h BufferedImage.TYPE_INT_RGB Graphics2D g bi.createGraphics panel.paint g return bi You may need to make sure you set the.. 
 Pacman open/close mouth animation http://stackoverflow.com/questions/14426693/pacman-open-close-mouth-animation  size int size BufferedImage.TYPE_INT_ARGB Graphics2D g2 bi.createGraphics g2.setColor color g2.fillRect 0 0 int size int size AffineTransform.. 
 Scale the ImageIcon automatically to label size http://stackoverflow.com/questions/14548808/scale-the-imageicon-automatically-to-label-size  height BufferedImage.TRANSLUCENT Graphics2D g2d Graphics2D bi.createGraphics g2d.addRenderingHints new RenderingHints RenderingHints.KEY_RENDERING.. 
 'Fill' Unicode characters in labels http://stackoverflow.com/questions/18686199/fill-unicode-characters-in-labels   sz sz BufferedImage.TYPE_INT_ARGB Graphics2D g bi.createGraphics g.setRenderingHint  RenderingHints.KEY_ANTIALIASING  RenderingHints.VALUE_ANTIALIAS_ON..  sz sz BufferedImage.TYPE_INT_ARGB Graphics2D g bi.createGraphics g.setRenderingHint  RenderingHints.KEY_ANTIALIASING  RenderingHints.VALUE_ANTIALIAS_ON..   BufferedImage.TYPE_INT_ARGB  Graphics g bi.createGraphics  tileSet.paint g  g.dispose  String gradientString gradientFill.. 
 How to rotate an image gradually in Swing? http://stackoverflow.com/questions/3405799/how-to-rotate-an-image-gradually-in-swing  size size BufferedImage.TYPE_INT_ARGB Graphics2D g2d bi.createGraphics g2d.setRenderingHint RenderingHints.KEY_ANTIALIASING RenderingHints.VALUE_ANTIALIAS_ON.. 
 JFormattedTextField is not properly cleared http://stackoverflow.com/questions/4148336/jformattedtextfield-is-not-properly-cleared  SIZE SIZE BufferedImage.TYPE_INT_ARGB Graphics2D g2d bi.createGraphics g2d.setRenderingHint RenderingHints.KEY_ANTIALIASING RenderingHints.VALUE_ANTIALIAS_ON.. 
 How to add JTable in JPanel  http://stackoverflow.com/questions/5621338/how-to-add-jtable-in-jpanel   200 200 BufferedImage.TYPE_INT_ARGB  Graphics2D g bi.createGraphics  GradientPaint gp new GradientPaint  20f 20f Color.red 180f.. 
 Swing: Obtain Image of JFrame http://stackoverflow.com/questions/5853879/swing-obtain-image-of-jframe  d.width  d.height  BufferedImage.TYPE_INT_ARGB  Graphics g bi.createGraphics  g.setColor new Color 255 255 255 128  g.fillRoundRect  0  0.. 
 Why does the JTable header not appear in the image? http://stackoverflow.com/questions/7369814/why-does-the-jtable-header-not-appear-in-the-image  .getHeight  BufferedImage.TYPE_INT_RGB  Graphics g bi.createGraphics p.paint g JOptionPane.showMessageDialog null new JLabel new.. p.getHeight BufferedImage.TYPE_INT_RGB Graphics g bi.createGraphics p.paint g g.dispose return bi public void writeImage BufferedImage.. 
 How do I set hard limit on a JComponent when setMaximumSize() and setPrefferedSize() don't work? http://stackoverflow.com/questions/8088885/how-do-i-set-hard-limit-on-a-jcomponent-when-setmaximumsize-and-setprefferedsi   w h BufferedImage.TYPE_INT_ARGB Graphics2D g2d bi.createGraphics  g2d.setPaint Color.lightGray g2d.fillRect 0 0 w h g2d.setColor.. 
 |