PHP Doku:: The SWFBitmap class - class.swfbitmap.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenMing (flash)The SWFBitmap class

Ein Service von Reinhard Neidl - Webprogrammierung.

Ming (flash)

<<SWFAction->__construct

SWFBitmap->__construct>>


UnterSeiten:

The SWFBitmap class

Einführung

SWFBitmap.

Klassenbeschreibung

SWFBitmap {
/* Methoden */
SWFBitmap SWFBitmap::__construct ( mixed $file [, mixed $alphafile ] )
float getHeight ( void )
float getWidth ( void )
}

Inhaltsverzeichnis


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
david dot jiang at muchdj dot com
16.09.2009 18:36
I found a workaround for the load jpg problem for SWFBitmap.

Error message:

(Catchable fatal error: SWFMovie::save() [function.SWFMovie-save]: Initial Jpeg marker not found! in /loalhost/test/swfjpg/swfjpg.php on line 23
)

This doesnt work:

<?php
 $f
= $s->addFill(new SWFBitmap( file_get_contents("image.jpg")));
?>

But this will works fine:

<?php
 $f
= $s->addFill(new SWFBitmap((fopen('image.jpg','rb')));
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)