vote up 1 vote down star
1

For one of my projects I would like to use PHP to read an SWF file on the server and get the dimensions of the stage of the SWF. So, the SWF file is not yet embedded in the page. Does anybody know if this is possible and which route I should take?

flag

2 Answers

vote up 5 vote down check

Use getimagesize() , it works perfectly with swf files.

link|flag
+1 - cool, I didn't know getimagesize did .swf – karim79 Aug 18 at 20:22
@codeburger & @karim79 getImageSize indeed does the job! After searching the net I expected a more difficult solution than that! Using getimagesize is definitely not the first search result I've encountered before asking here ;-) – tvgemert Aug 19 at 8:39
vote up 1 vote down

See this (SWF Header Parser Class - licensed under LGPL):

http://www.phpclasses.org/browse/package/1653.html

The website says this:

This class is meant to parse the header of Shockwave Flash animation files (.swf) to extract metadata information like the width and height of animation, compression status and uncompressed size, frame rate and total number of frames.

This class parses Flash files using only PHP code, so no special extension is necessary.

Supports both, compressed and uncompressed SWF Flash movies

link|flag
Okay, thanks Karim79 that looks quite usefull! Let's implement now. – tvgemert Aug 18 at 14:54
@tvgemert - if getimagesize does it, as codeburger suggested, then definately go with that solution. – karim79 Aug 18 at 20:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.