Giriş
Şu satırı dahil ederiz.
Kullanım
Şöyle yaparız.
Açıklaması şöyle.
Örnek ver
Ş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.
SRC_OVER Alanı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.
Örnek ver
Hiç yorum yok:
Yorum Gönder