• class SWFEditor function replaceGIFData($image_id, $gifdata)

説明

SWF バイナリ中の画像を GIF で差し替えます。

引数

  • int $image_id (SWF 内のコンテンツ毎にふられた ID)
  • string $gifdata (GIF ファイルのデータ)

戻り値

  • boolean $result (true:成功, false:失敗)

使用例

  1. <?php
  2. $swf = new SWFEditor();
  3. $swf->input($swfdata);
  4. $swf->replaceGIFData($image_id, $gifdata);
  5. header('Content-type: application/x-shockwave-flash');
  6. echo $swf->output();

備考

  • 透過GIFにも対応しています。
  • GIF アニメーションを渡した場合は一コマ目の画像を適用します。

参考

関連