java Programming Glossary: g.create
JTabbedPane: show task progress in a tab http://stackoverflow.com/questions/10055336/jtabbedpane-show-task-progress-in-a-tab g int x int y rotatingTimer.stop Graphics2D g2 Graphics2D g.create int cWidth delegateIcon.getIconWidth 2 int cHeight delegateIcon.getIconHeight..
how to set JFrame background transparent but JPanel or JLabel Background opaque? http://stackoverflow.com/questions/11703794/how-to-set-jframe-background-transparent-but-jpanel-or-jlabel-background-opaque g Apply our own painting effect Graphics2D g2d Graphics2D g.create 50 transparent Alpha g2d.setComposite AlphaComposite.getInstance..
Drawing a graphical histogram http://stackoverflow.com/questions/12518496/drawing-a-graphical-histogram height getHeight 1 yOffset 2 Graphics2D g2d Graphics2D g.create g2d.setColor Color.DARK_GRAY g2d.drawRect xOffset yOffset..
Rotate Image around character (JAVA) http://stackoverflow.com/questions/12964983/rotate-image-around-character-java g super.paintComponent g Graphics2D g2d Graphics2D g.create int x getWidth character.getWidth 2 int y getHeight character.getHeight..
Java Bouncing Ball http://stackoverflow.com/questions/13022754/java-bouncing-ball g super.paintComponent g Graphics2D g2d Graphics2D g.create g2d.setRenderingHint RenderingHints.KEY_ANTIALIASING RenderingHints.VALUE_ANTIALIAS_ON..
How to add fade/fade out effects to a JLabel http://stackoverflow.com/questions/13203415/how-to-add-fade-fade-out-effects-to-a-jlabel borders and child components Graphics2D g2d Graphics2D g.create g2d.setComposite AlphaComposite.getInstance AlphaComposite.SRC_OVER..
Java ball object doesn't bounce off of drawn rectangles like it's supposed to. http://stackoverflow.com/questions/13261767/java-ball-object-doesnt-bounce-off-of-drawn-rectangles-like-its-supposed-to g super.paintComponent g Graphics2D g2d Graphics2D g.create g2d.setColor Color.GRAY g2d.fill world if insect null g2d.setColor.. g if beachBall null Graphics2D g2d Graphics2D g.create g2d.setRenderingHint RenderingHints.KEY_ALPHA_INTERPOLATION..
How to make line animation smoother? http://stackoverflow.com/questions/13540534/how-to-make-line-animation-smoother g super.paintComponent g Graphics2D g2d Graphics2D g.create for Animatable animatable getModel .getAnimatables animatable.paint..
Pacman open/close mouth animation http://stackoverflow.com/questions/14426693/pacman-open-close-mouth-animation Graphics g super.paintComponent g Graphics2D g2 Graphics2D g.create double size getWidth getHeight getWidth getHeight if angle 2..
Connect JButtons visually via line http://stackoverflow.com/questions/14804136/connect-jbuttons-visually-via-line g super.paintComponent g Graphics2D g2d Graphics2D g.create if lastSelected null g2d.setColor Color.RED int x lastSelected.getX..
How to make a transparant Jframe in Java but keep everything else the same? http://stackoverflow.com/questions/14927980/how-to-make-a-transparant-jframe-in-java-but-keep-everything-else-the-same g super.paintComponent g Graphics2D g2d Graphics2D g.create g2d.setComposite AlphaComposite.SrcOver.derive 0.85f g2d.setColor..
java multiple graphics [closed] http://stackoverflow.com/questions/15756210/java-multiple-graphics g super.paintComponent g Graphics2D g2d Graphics2D g.create int values getSorter .getValues int width getWidth 1 int height.. g super.paintComponent g Graphics2D g2d Graphics2D g.create int values getSorter .getValues Insets insets getInsets int..
Rotate BufferedImage Inside JPanel http://stackoverflow.com/questions/15779877/rotate-bufferedimage-inside-jpanel g super.paintComponent g Graphics2D g2d Graphics2D g.create g2d.setColor Color.RED g2d.drawLine getWidth 2 0 getWidth 2..
add thumnails to spring layout like a grid? http://stackoverflow.com/questions/15961412/add-thumnails-to-spring-layout-like-a-grid g super.paintComponent g Graphics2D g2d Graphics2D g.create if img null int width img.getWidth int height img.getHeight..
Java Applet Game 2D Window Scrolling http://stackoverflow.com/questions/16050723/java-applet-game-2d-window-scrolling g super.paintComponent g Graphics2D g2d Graphics2D g.create if map null g2d.drawImage getView 0 0 this Point real fromWorld..
Drawing between 2 images in 1 JPanel http://stackoverflow.com/questions/6609888/drawing-between-2-images-in-1-jpanel protected void paintComponent Graphics g Graphics gCopy g.create gCopy.setColor Color.BLUE.darker gCopy.fillRect 0 0 getWidth.. Graphics g if p1 null p2 null Graphics2D g2 Graphics2D g.create g2.setRenderingHint RenderingHints.KEY_ANTIALIASING RenderingHints.VALUE_ANTIALIAS_ON..
Component painting outside custom border http://stackoverflow.com/questions/8416295/component-painting-outside-custom-border int x int y int width int height Graphics2D g2 Graphics2D g.create g2.setRenderingHint RenderingHints.KEY_ANTIALIASING RenderingHints.VALUE_ANTIALIAS_ON..
|