24 Mayıs 2018 Perşembe

Awt AlphaComposite Sınıfı

Giriş
Şu satırı dahil ederiz.
import java.awt.AlphaComposite;
Alpha değerini ayarlayarak ne kadar saydam/transparent olacağını belirtir.

Kullanım
Şöyle yaparız.
Graphics2D g2 = ...;
...

int rule = AlphaComposite.SRC_OVER;
Composite comp = AlphaComposite.getInstance(rule , alpha );
g2.setComposite(comp );
g2.drawLine(x1, y1, x2, y2);
CLEAR Alanı
Açıklaması şöyle.
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.
SRC_OVER Alanı
Örnek ver

Hiç yorum yok:

Yorum Gönder