JavaTM 2 Platform
Standard Ed. 6

java.awt.font
類別 GraphicAttribute

java.lang.Object
  繼承者 java.awt.font.GraphicAttribute
直接已知子類別:
ImageGraphicAttribute, ShapeGraphicAttribute

public abstract class GraphicAttribute
extends Object

此類別與 CHAR_REPLACEMENT 屬性一起使用。

GraphicAttribute 類別表示文本中內嵌的圖形。客戶端創建此類別的子類別,以實作其自身的 char 替換圖形。要在文本中嵌入形狀和圖像的客戶端不必創建此類別的子類別。相反,客戶端可以使用 ShapeGraphicAttributeImageGraphicAttribute 類別。

子類別必須確保物件一經建構就不可修改。該變 TextLayout 中使用的 GraphicAttribute 會導致 TextLayout 的不確定行為。


欄位摘要
static int BOTTOM_ALIGNMENT
          將圖形底部與行的底部對齊。
static int CENTER_BASELINE
          將圖形的原點與行的中心基線對齊。
static int HANGING_BASELINE
          將圖形的原點與行的懸掛基線對齊。
static int ROMAN_BASELINE
          將圖形的原點與行的羅馬字體基線對齊。
static int TOP_ALIGNMENT
          將圖形頂端與行的頂端對齊。
 
建構子摘要
protected GraphicAttribute(int alignment)
          建構一個 GraphicAttribute
 
方法摘要
abstract  void draw(Graphics2D graphics, float x, float y)
          在指定的位置呈現此 GraphicAttribute
abstract  float getAdvance()
          返回此 GraphicAttribute 的 advance。
 int getAlignment()
          返回此 GraphicAttribute 的對齊方式。
abstract  float getAscent()
          返回此 GraphicAttribute 的 ascent。
 Rectangle2D getBounds()
          返回包括所有位的 Rectangle2D,這些位由與呈現位置相關的 GraphicAttribute 繪製。
abstract  float getDescent()
          返回此 GraphicAttribute 的 descent。
 GlyphJustificationInfo getJustificationInfo()
          返回此 GraphicAttribute 的調整資訊。
 Shape getOutline(AffineTransform tx)
          返回表示此 GraphicAttribute 呈現區域的 Shape
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

欄位詳細資訊

TOP_ALIGNMENT

public static final int TOP_ALIGNMENT
將圖形頂端與行的頂端對齊。

另請參見:
常數欄位值

BOTTOM_ALIGNMENT

public static final int BOTTOM_ALIGNMENT
將圖形底部與行的底部對齊。

另請參見:
常數欄位值

ROMAN_BASELINE

public static final int ROMAN_BASELINE
將圖形的原點與行的羅馬字體基線對齊。

另請參見:
常數欄位值

CENTER_BASELINE

public static final int CENTER_BASELINE
將圖形的原點與行的中心基線對齊。

另請參見:
常數欄位值

HANGING_BASELINE

public static final int HANGING_BASELINE
將圖形的原點與行的懸掛基線對齊。

另請參見:
常數欄位值
建構子詳細資訊

GraphicAttribute

protected GraphicAttribute(int alignment)
建構一個 GraphicAttribute。子類別使用此建構子來定義圖形的對齊方式。

參數:
alignment - 表示某個 GraphicAttribute 對齊欄位的 int 值。
方法詳細資訊

getAscent

public abstract float getAscent()
返回此 GraphicAttribute 的 ascent。圖形可以在其 ascent 之上呈現。

返回:
GraphicAttribute 的 ascent。
另請參見:
getBounds()

getDescent

public abstract float getDescent()
返回此 GraphicAttribute 的 descent。圖形可以在其 descent 之下呈現。

返回:
GraphicAttribute 的 descent。
另請參見:
getBounds()

getAdvance

public abstract float getAdvance()
返回此 GraphicAttribute 的 advance。GraphicAttribute 物件的 advance 是呈現該圖形的點與呈現下一個字元或圖形的點之間的距離。圖形可以呈現在其 advance 之外。

返回:
GraphicAttribute 的 advance。
另請參見:
getBounds()

getBounds

public Rectangle2D getBounds()
返回包括所有位的 Rectangle2D,這些位由與呈現位置相關的 GraphicAttribute 繪製。圖形可以在其原點、ascent、descent 和 advance 之外呈現;但是如果這樣的話,此方法的實作必須指示呈現該圖形的位置。預設的邊界是矩形 (0, -ascent, advance, ascent+descent)。

返回:
包括由此 GraphicAttribute 呈現的所有位的 Rectangle2D

getOutline

public Shape getOutline(AffineTransform tx)
返回表示此 GraphicAttribute 呈現區域的 Shape。當請求 TextLayout 返回文本輪廓時,將使用此方法。(未變換的)Shape 不得超出 getBounds 返回的矩形邊界。 預設實作將返回由 getBounds() 返回,並通過提供的 AffineTransform(如果有)變換得到的矩形。

參數:
tx - 要應用到此 GraphicAttribute 輪廓的可選 AffineTransform。此參數可以為 null。
返回:
.表示此圖形屬性的 Shape,適用於勾畫或填充。
從以下版本開始:
1.6

draw

public abstract void draw(Graphics2D graphics,
                          float x,
                          float y)
在指定的位置呈現此 GraphicAttribute

參數:
graphics - 將該圖形呈現到的 Graphics2D
x, y - 呈現該圖形的使用者空間坐標

getAlignment

public final int getAlignment()
返回此 GraphicAttribute 的對齊方式。可與特定的基線對齊,或與行的絕對頂端或底端對齊。

返回:
GraphicAttribute 的對齊方式。

getJustificationInfo

public GlyphJustificationInfo getJustificationInfo()
返回此 GraphicAttribute 的調整資訊。子類別可以覆寫此方法,以提供不同的調整資訊。

返回:
包含此 GraphicAttribute 調整資訊的 GlyphJustificationInfo 物件。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only