SWFText クラス

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

導入

SWFText.

クラス概要

SWFText {
/* メソッド */
void addString ( string $string )
void addUTF8String ( string $text )
__construct ( void )
float getAscent ( void )
float getDescent ( void )
float getLeading ( void )
float getUTF8Width ( string $string )
float getWidth ( string $string )
void moveTo ( float $x , float $y )
void setColor ( int $red , int $green , int $blue [, int $a = 255 ] )
void setFont ( SWFFont $font )
void setHeight ( float $height )
void setSpacing ( float $spacing )
}

目次

  • SWFText::addString — 文字列を描画する
  • SWFText::addUTF8String — 現在のペンの位置に、現在のフォント・高さ・行間および色設定を使用して 指定したテキストで SWFText オブジェクトを作成する
  • SWFText::__construct — 新しい SWFText オブジェクトを作成する
  • SWFText::getAscent — 現在のサイズにおけるフォントの ascent (ベースライン上部の高さ) あるいは取得できない場合は 0 を返す
  • SWFText::getDescent — 現在のサイズにおけるフォントの descent (ベースライン下部の深さ) あるいは取得できない場合は 0 を返す
  • SWFText::getLeading — 現在のサイズにおけるフォントの leading (行間) あるいは取得できない場合は 0 を返す
  • SWFText::getUTF8Width — 現在のフォントおよびサイズにおける指定した文字列の幅を計算する
  • SWFText::getWidth — 文字列の幅を計算する
  • SWFText::moveTo — ペンを移動する
  • SWFText::setColor — 現在のテキスト色を設定する
  • SWFText::setFont — 現在のフォントを設定する
  • SWFText::setHeight — 現在のフォントの高さを設定する
  • SWFText::setSpacing — 現在のフォントの間隔を設定する