alpha channel : Java Glossary
home A words local find no local find frame, full screen Google search web for topic jump to footer translate with Babelfish 2007-11-09 by Roedy Green ©1996-2008 Canadian Mind Products
Go to : punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all)
alpha channel
The Color class stores colours internally as a 32-bit integer, 8 bits each of red, green, blue and alpha, each value 0..255. Alpha measures opacity. 0=transparent 255=opaque. The default for the alpha value is 255, completely opaque.

The combined ARGB value consists of the alpha component in bits 24-31, the red component in bits 16-23, the green component in bits 8-15, and the blue component in bits 0-7 where bit 0 is the least significant bit.

// Creating a colour with an alpha component.
// Note order of parameters is RGBA, not ARGB as they are internally.
// Dark orange is #ff8c00 in HTML.
Color almostTransparentDarkOrange
= new Color( 0xff /* red */,
             0x8c /* green */,
             0x00 /* blue */,
             0x1f /* alpha */ );

In the Masker Applet, I create an image, an email address painted on a transparent background, defined with alpha=0, then write the whole thing to a *.png image file on disk.

AlphaComponsite

The AlphaComposite class lets define how to blend images together, taking into account transparency. It lets you create an AlphaComposite rule for combining source and destination. You then use Graphics2D. setComposite( anAlphaComposite) to apply that rule to your Graphics2D object to use in all subsquent calls to drawing methods such as drawImage, drawString, draw, and fill.

Learning More

Sun’s Javadoc on the Color class : available:
Sun’s Javadoc on the AlphaComposite class : available:

CMP_homejump to top
CMP logo
feedback Please email your feedback for publication, errors, omissions, broken/redirected link reports
and suggestions to improve this page to Roedy Green : feedback email
made with CSS
HTML Checked!
ICRA ratings logo
mindprod.com IP:[65.110.21.43]
Your face IP:[38.103.63.17] Spread the Net
You are visitor number 643.
You can get a fresh copy of this page from: or possibly from your local J: drive (Java virtual drive/Mindprod website mirror)
http://mindprod.com/jgloss/alphachannel.html J:\mindprod\jgloss\alphachannel.html