¡@

Home 

java Programming Glossary: g2d.setcomposite

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

Graphics2D g2d Graphics2D g.create 50 transparent Alpha g2d.setComposite AlphaComposite.getInstance AlphaComposite.SRC_OVER 0.5f g2d.setColor..

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

and child components Graphics2D g2d Graphics2D g.create g2d.setComposite AlphaComposite.getInstance AlphaComposite.SRC_OVER getAlpha..

how can you make a progress bar without using JProgressBar?

http://stackoverflow.com/questions/14036173/how-can-you-make-a-progress-bar-without-using-jprogressbar

1 A gradient over the progress fill g2d.setPaint gradient g2d.setComposite transparent g2d.fillRect 1 1 w 1 h 1 final float FACTOR 0.20f.. FACTOR w 1 int h FACTOR if isEnabled for int i h i w i h g2d.setComposite veryTransparent g2d.setColor Color.GRAY g2d.drawLine i 1 i.. g2d.drawLine i 1 1 i 1 h 1 else for int i 0 i w i h g2d.setComposite veryTransparent g2d.setColor Color.RED g2d.drawLine i h 1..

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 Graphics2D g2d Graphics2D g.create g2d.setComposite AlphaComposite.SrcOver.derive 0.85f g2d.setColor getBackground..

Re-paint problem on translucent frame/panel/component

http://stackoverflow.com/questions/2163544/re-paint-problem-on-translucent-frame-panel-component

int w this.getWidth int h this.getHeight g2d.setComposite AlphaComposite.Clear g2d.fillRect 0 0 w h g2d.setComposite AlphaComposite.Src.. g2d.setComposite AlphaComposite.Clear g2d.fillRect 0 0 w h g2d.setComposite AlphaComposite.Src g2d.setPaint g2d.getBackground g2d.fillRect.. g2d int w2 time.getWidth 2 int h2 time.getHeight 2 g2d.setComposite AlphaComposite.SrcOver g2d.drawImage time w 2 w2 h 2 h2 null..

Passing current Date

http://stackoverflow.com/questions/8614972/passing-current-date

Color.black g2d.fillRect 0 0 getWidth this.getHeight g2d.setComposite ac for Bauble b queue g2d.setColor b.c g2d.fillOval b.x b.y..