SWFText
PHP Manual

SWFText::__construct

(PHP 5 <= 5.3.0, PECL ming SVN)

SWFText::__construct新しい SWFText オブジェクトを作成する

説明

SWFText::__construct ( void )
警告

この関数は、 実験的 なものです。この関数の動作・ 名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。

新しい SWFText オブジェクトを作成します。

この単純な例は、白色の背景上に大きな黄色の文字で "PHP generates Flash with Ming" を描きます。

例1 swftext() の例

<?php
$f 
= new SWFFont("Techno.fdb");
$t = new SWFText();
$t->setFont($f);
$t->moveTo(2002400);
$t->setColor(0xff0xff0);
$t->setHeight(1200);
$t->addString("PHP generates Flash with Ming!!");

$m = new SWFMovie();
$m->setDimension(54003600);

$m->add($t);

header('Content-type: application/x-shockwave-flash');
$m->output();
?>


SWFText
PHP Manual