AlphaComposite (Java 2 Platform SE 5.0) (original) (raw)


java.awt

Class AlphaComposite

java.lang.Object extended by java.awt.AlphaComposite

All Implemented Interfaces:

Composite


public final class AlphaComposite

extends Object

implements Composite

The AlphaComposite class implements basic alpha compositing rules for combining source and destination colors to achieve blending and transparency effects with graphics and images. The specific rules implemented by this class are the basic set of 12 rules described in T. Porter and T. Duff, "Compositing Digital Images", SIGGRAPH 84, 253-259. The rest of this documentation assumes some familiarity with the definitions and concepts outlined in that paper.

This class extends the standard equations defined by Porter and Duff to include one additional factor. An instance of the AlphaComposite class can contain an alpha value that is used to modify the opacity or coverage of every source pixel before it is used in the blending equations.

It is important to note that the equations defined by the Porter and Duff paper are all defined to operate on color components that are premultiplied by their corresponding alpha components. Since the ColorModel and Raster classes allow the storage of pixel data in either premultiplied or non-premultiplied form, all input data must be normalized into premultiplied form before applying the equations and all results might need to be adjusted back to the form required by the destination before the pixel values are stored.

Also note that this class defines only the equations for combining color and alpha values in a purely mathematical sense. The accurate application of its equations depends on the way the data is retrieved from its sources and stored in its destinations. See Implementation Caveats for further information.

The following factors are used in the description of the blending equation in the Porter and Duff paper:

Factor Definition
As the alpha component of the source pixel
Cs a color component of the source pixel in premultiplied form
Ad the alpha component of the destination pixel
Cd a color component of the destination pixel in premultiplied form
Fs the fraction of the source pixel that contributes to the output
Fd the fraction of the destination pixel that contributes to the output
Ar the alpha component of the result
Cr a color component of the result in premultiplied form

Using these factors, Porter and Duff define 12 ways of choosing the blending factors Fs and Fd to produce each of 12 desirable visual effects. The equations for determining Fs and Fd are given in the descriptions of the 12 static fields that specify visual effects. For example, the description for SRC_OVER specifies that Fs = 1 and Fd = (1-As). Once a set of equations for determining the blending factors is known they can then be applied to each pixel to produce a result using the following set of equations:

    _Fs_ = _f_(_Ad_)
    _Fd_ = _f_(_As_)
    _Ar_ = _As_*_Fs_ + _Ad_*_Fd_
    _Cr_ = _Cs_*_Fs_ + _Cd_*_Fd_

The following factors will be used to discuss our extensions to the blending equation in the Porter and Duff paper:

Factor Definition
Csr one of the raw color components of the source pixel
Cdr one of the raw color components of the destination pixel
Aac the "extra" alpha component from the AlphaComposite instance
Asr the raw alpha component of the source pixel
Adr the raw alpha component of the destination pixel
Adf the final alpha component stored in the destination
Cdf the final raw color component stored in the destination

Preparing Inputs

The AlphaComposite class defines an additional alpha value that is applied to the source alpha. This value is applied as if an implicit SRC_IN rule were first applied to the source pixel against a pixel with the indicated alpha by multiplying both the raw source alpha and the raw source colors by the alpha in the AlphaComposite. This leads to the following equation for producing the alpha used in the Porter and Duff blending equation:

    _As_ = _Asr_ * _Aac_ 

All of the raw source color components need to be multiplied by the alpha in the AlphaComposite instance. Additionally, if the source was not in premultiplied form then the color components also need to be multiplied by the source alpha. Thus, the equation for producing the source color components for the Porter and Duff equation depends on whether the source pixels are premultiplied or not:

    _Cs_ = _Csr_ * _Asr_ * _Aac_     (if source is not premultiplied)
    _Cs_ = _Csr_ * _Aac_           (if source is premultiplied) 

No adjustment needs to be made to the destination alpha:

    _Ad_ = _Adr_ 

The destination color components need to be adjusted only if they are not in premultiplied form:

    _Cd_ = _Cdr_ * _Ad_    (if destination is not premultiplied) 
    _Cd_ = _Cdr_         (if destination is premultiplied) 

Applying the Blending Equation

The adjusted As, Ad,Cs, and Cd are used in the standard Porter and Duff equations to calculate the blending factors_Fs_ and Fd and then the resulting premultiplied components Ar and Cr.

Preparing Results

The results only need to be adjusted if they are to be stored back into a destination buffer that holds data that is not premultiplied, using the following equations:

    _Adf_ = _Ar_
    _Cdf_ = _Cr_                 (if dest is premultiplied)
    _Cdf_ = _Cr_ / _Ar_            (if dest is not premultiplied) 

Note that since the division is undefined if the resulting alpha is zero, the division in that case is omitted to avoid the "divide by zero" and the color components are left as all zeros.

Performance Considerations

For performance reasons, it is preferrable that Raster objects passed to the compose method of a CompositeContext object created by the AlphaComposite class have premultiplied data. If either the source Raster or the destination Raster is not premultiplied, however, appropriate conversions are performed before and after the compositing operation.

Implementation Caveats

See Also:

Composite, CompositeContext


Field Summary
static AlphaComposite Clear AlphaComposite object that implements the opaque CLEAR rule with an alpha of 1.0f.
static int CLEAR Both the color and the alpha of the destination are cleared (Porter-Duff Clear rule).
static AlphaComposite Dst AlphaComposite object that implements the opaque DST rule with an alpha of 1.0f.
static int DST The destination is left untouched (Porter-Duff Destination rule).
static int DST_ATOP The part of the destination lying inside of the source is composited over the source and replaces the destination (Porter-Duff Destination Atop Source rule).
static int DST_IN The part of the destination lying inside of the source replaces the destination (Porter-Duff Destination In Source rule).
static int DST_OUT The part of the destination lying outside of the source replaces the destination (Porter-Duff Destination Held Out By Source rule).
static int DST_OVER The destination is composited over the source and the result replaces the destination (Porter-Duff Destination Over Source rule).
static AlphaComposite DstAtop AlphaComposite object that implements the opaque DST_ATOP rule with an alpha of 1.0f.
static AlphaComposite DstIn AlphaComposite object that implements the opaque DST_IN rule with an alpha of 1.0f.
static AlphaComposite DstOut AlphaComposite object that implements the opaque DST_OUT rule with an alpha of 1.0f.
static AlphaComposite DstOver AlphaComposite object that implements the opaque DST_OVER rule with an alpha of 1.0f.
static AlphaComposite Src AlphaComposite object that implements the opaque SRC rule with an alpha of 1.0f.
static int SRC The source is copied to the destination (Porter-Duff Source rule).
static int SRC_ATOP The part of the source lying inside of the destination is composited onto the destination (Porter-Duff Source Atop Destination rule).
static int SRC_IN The part of the source lying inside of the destination replaces the destination (Porter-Duff Source In Destination rule).
static int SRC_OUT The part of the source lying outside of the destination replaces the destination (Porter-Duff Source Held Out By Destination rule).
static int SRC_OVER The source is composited over the destination (Porter-Duff Source Over Destination rule).
static AlphaComposite SrcAtop AlphaComposite object that implements the opaque SRC_ATOP rule with an alpha of 1.0f.
static AlphaComposite SrcIn AlphaComposite object that implements the opaque SRC_IN rule with an alpha of 1.0f.
static AlphaComposite SrcOut AlphaComposite object that implements the opaque SRC_OUT rule with an alpha of 1.0f.
static AlphaComposite SrcOver AlphaComposite object that implements the opaque SRC_OVER rule with an alpha of 1.0f.
static AlphaComposite Xor AlphaComposite object that implements the opaque XOR rule with an alpha of 1.0f.
static int XOR The part of the source that lies outside of the destination is combined with the part of the destination that lies outside of the source (Porter-Duff Source Xor Destination rule).
Method Summary
CompositeContext [createContext](../../java/awt/AlphaComposite.html#createContext%28java.awt.image.ColorModel, java.awt.image.ColorModel, java.awt.RenderingHints%29)(ColorModel srcColorModel,ColorModel dstColorModel,RenderingHints hints) Creates a context for the compositing operation.
boolean equals(Object obj) Determines whether the specified object is equal to this AlphaComposite.
float getAlpha() Returns the alpha value of this AlphaComposite.
static AlphaComposite getInstance(int rule) Creates an AlphaComposite object with the specified rule.
static AlphaComposite [getInstance](../../java/awt/AlphaComposite.html#getInstance%28int, float%29)(int rule, float alpha) Creates an AlphaComposite object with the specified rule and the constant alpha to multiply with the alpha of the source.
int getRule() Returns the compositing rule of this AlphaComposite.
int hashCode() Returns the hashcode for this composite.
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, [wait](../../java/lang/Object.html#wait%28long, int%29)
Field Detail

CLEAR

public static final int CLEAR

Both the color and the alpha of the destination are cleared (Porter-Duff Clear rule). Neither the source nor the destination is used as input.

Fs = 0 and Fd = 0, thus:

    _Ar_ = 0
    _Cr_ = 0

See Also:

Constant Field Values


SRC

public static final int SRC

The source is copied to the destination (Porter-Duff Source rule). The destination is not used as input.

Fs = 1 and Fd = 0, thus:

    _Ar_ = _As_
    _Cr_ = _Cs_

See Also:

Constant Field Values


DST

public static final int DST

The destination is left untouched (Porter-Duff Destination rule).

Fs = 0 and Fd = 1, thus:

    _Ar_ = _Ad_
    _Cr_ = _Cd_

Since:

1.4

See Also:

Constant Field Values


SRC_OVER

public static final int SRC_OVER

The source is composited over the destination (Porter-Duff Source Over Destination rule).

Fs = 1 and Fd = (1-As), thus:

    _Ar_ = _As_ + _Ad_*(1-_As_)
    _Cr_ = _Cs_ + _Cd_*(1-_As_)

See Also:

Constant Field Values


DST_OVER

public static final int DST_OVER

The destination is composited over the source and the result replaces the destination (Porter-Duff Destination Over Source rule).

Fs = (1-Ad) and Fd = 1, thus:

    _Ar_ = _As_*(1-_Ad_) + _Ad_
    _Cr_ = _Cs_*(1-_Ad_) + _Cd_

See Also:

Constant Field Values


SRC_IN

public static final int SRC_IN

The part of the source lying inside of the destination replaces the destination (Porter-Duff Source In Destination rule).

Fs = Ad and Fd = 0, thus:

    _Ar_ = _As_*_Ad_
    _Cr_ = _Cs_*_Ad_

See Also:

Constant Field Values


DST_IN

public static final int DST_IN

The part of the destination lying inside of the source replaces the destination (Porter-Duff Destination In Source rule).

Fs = 0 and Fd = As, thus:

    _Ar_ = _Ad_*_As_
    _Cr_ = _Cd_*_As_

See Also:

Constant Field Values


SRC_OUT

public static final int SRC_OUT

The part of the source lying outside of the destination replaces the destination (Porter-Duff Source Held Out By Destination rule).

Fs = (1-Ad) and Fd = 0, thus:

    _Ar_ = _As_*(1-_Ad_)
    _Cr_ = _Cs_*(1-_Ad_)

See Also:

Constant Field Values


DST_OUT

public static final int DST_OUT

The part of the destination lying outside of the source replaces the destination (Porter-Duff Destination Held Out By Source rule).

Fs = 0 and Fd = (1-As), thus:

    _Ar_ = _Ad_*(1-_As_)
    _Cr_ = _Cd_*(1-_As_)

See Also:

Constant Field Values


SRC_ATOP

public static final int SRC_ATOP

The part of the source lying inside of the destination is composited onto the destination (Porter-Duff Source Atop Destination rule).

Fs = Ad and Fd = (1-As), thus:

    _Ar_ = _As_*_Ad_ + _Ad_*(1-_As_) = _Ad_
    _Cr_ = _Cs_*_Ad_ + _Cd_*(1-_As_)

Since:

1.4

See Also:

Constant Field Values


DST_ATOP

public static final int DST_ATOP

The part of the destination lying inside of the source is composited over the source and replaces the destination (Porter-Duff Destination Atop Source rule).

Fs = (1-Ad) and Fd = As, thus:

    _Ar_ = _As_*(1-_Ad_) + _Ad_*_As_ = _As_
    _Cr_ = _Cs_*(1-_Ad_) + _Cd_*_As_

Since:

1.4

See Also:

Constant Field Values


XOR

public static final int XOR

The part of the source that lies outside of the destination is combined with the part of the destination that lies outside of the source (Porter-Duff Source Xor Destination rule).

Fs = (1-Ad) and Fd = (1-As), thus:

    _Ar_ = _As_*(1-_Ad_) + _Ad_*(1-_As_)
    _Cr_ = _Cs_*(1-_Ad_) + _Cd_*(1-_As_)

Since:

1.4

See Also:

Constant Field Values


Clear

public static final AlphaComposite Clear

AlphaComposite object that implements the opaque CLEAR rule with an alpha of 1.0f.

See Also:

CLEAR


Src

public static final AlphaComposite Src

AlphaComposite object that implements the opaque SRC rule with an alpha of 1.0f.

See Also:

SRC


Dst

public static final AlphaComposite Dst

AlphaComposite object that implements the opaque DST rule with an alpha of 1.0f.

Since:

1.4

See Also:

DST


SrcOver

public static final AlphaComposite SrcOver

AlphaComposite object that implements the opaque SRC_OVER rule with an alpha of 1.0f.

See Also:

SRC_OVER


DstOver

public static final AlphaComposite DstOver

AlphaComposite object that implements the opaque DST_OVER rule with an alpha of 1.0f.

See Also:

DST_OVER


SrcIn

public static final AlphaComposite SrcIn

AlphaComposite object that implements the opaque SRC_IN rule with an alpha of 1.0f.

See Also:

SRC_IN


DstIn

public static final AlphaComposite DstIn

AlphaComposite object that implements the opaque DST_IN rule with an alpha of 1.0f.

See Also:

DST_IN


SrcOut

public static final AlphaComposite SrcOut

AlphaComposite object that implements the opaque SRC_OUT rule with an alpha of 1.0f.

See Also:

SRC_OUT


DstOut

public static final AlphaComposite DstOut

AlphaComposite object that implements the opaque DST_OUT rule with an alpha of 1.0f.

See Also:

DST_OUT


SrcAtop

public static final AlphaComposite SrcAtop

AlphaComposite object that implements the opaque SRC_ATOP rule with an alpha of 1.0f.

Since:

1.4

See Also:

SRC_ATOP


DstAtop

public static final AlphaComposite DstAtop

AlphaComposite object that implements the opaque DST_ATOP rule with an alpha of 1.0f.

Since:

1.4

See Also:

DST_ATOP


Xor

public static final AlphaComposite Xor

AlphaComposite object that implements the opaque XOR rule with an alpha of 1.0f.

Since:

1.4

See Also:

XOR

Method Detail

getInstance

public static AlphaComposite getInstance(int rule)

Creates an AlphaComposite object with the specified rule.

Parameters:

rule - the compositing rule

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if rule is not one of the following: CLEAR, SRC, DST,SRC_OVER, DST_OVER, SRC_IN, DST_IN, SRC_OUT, DST_OUT,SRC_ATOP, DST_ATOP, or XOR


getInstance

public static AlphaComposite getInstance(int rule, float alpha)

Creates an AlphaComposite object with the specified rule and the constant alpha to multiply with the alpha of the source. The source is multiplied with the specified alpha before being composited with the destination.

Parameters:

rule - the compositing rule

alpha - the constant alpha to be multiplied with the alpha of the source. alpha must be a floating point number in the inclusive range [0.0, 1.0].

Throws:

[IllegalArgumentException](../../java/lang/IllegalArgumentException.html "class in java.lang") - if alpha is less than 0.0 or greater than 1.0, or ifrule is not one of the following: CLEAR, SRC, DST,SRC_OVER, DST_OVER, SRC_IN, DST_IN, SRC_OUT, DST_OUT,SRC_ATOP, DST_ATOP, or XOR


createContext

public CompositeContext createContext(ColorModel srcColorModel, ColorModel dstColorModel, RenderingHints hints)

Creates a context for the compositing operation. The context contains state that is used in performing the compositing operation.

Specified by:

[createContext](../../java/awt/Composite.html#createContext%28java.awt.image.ColorModel, java.awt.image.ColorModel, java.awt.RenderingHints%29) in interface [Composite](../../java/awt/Composite.html "interface in java.awt")

Parameters:

srcColorModel - the ColorModel of the source

dstColorModel - the ColorModel of the destination

hints - the hint that the context object uses to choose between rendering alternatives

Returns:

the CompositeContext object to be used to perform compositing operations.


getAlpha

public float getAlpha()

Returns the alpha value of this AlphaComposite. If thisAlphaComposite does not have an alpha value, 1.0 is returned.

Returns:

the alpha value of this AlphaComposite.


getRule

public int getRule()

Returns the compositing rule of this AlphaComposite.

Returns:

the compositing rule of this AlphaComposite.


hashCode

public int hashCode()

Returns the hashcode for this composite.

Overrides:

[hashCode](../../java/lang/Object.html#hashCode%28%29) in class [Object](../../java/lang/Object.html "class in java.lang")

Returns:

a hash code for this composite.

See Also:

Object.equals(java.lang.Object), Hashtable


equals

public boolean equals(Object obj)

Determines whether the specified object is equal to this AlphaComposite.

The result is true if and only if the argument is not null and is anAlphaComposite object that has the same compositing rule and alpha value as this object.

Overrides:

[equals](../../java/lang/Object.html#equals%28java.lang.Object%29) in class [Object](../../java/lang/Object.html "class in java.lang")

Parameters:

obj - the Object to test for equality

Returns:

true if obj equals thisAlphaComposite; false otherwise.

See Also:

Object.hashCode(), Hashtable



Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.