up vote 5 down vote favorite
1
share [g+] share [fb]

I'd like to be able to take a 1-frame SWF file and convert it to PNG through PHP. I'm okay with using command-line tools to get this done.

How could I go about doing this? I found an ActiveX library, but that seems like one too many layers. I also see that Gnash seems to have a PNG output class, but I can't figure out how to get to that from the command line without doing some deep coding of my own. Are there any other clever solutions available? Thanks!

EDIT: To clarify, this is not a one-time task I just want to be able to do once. I'd like to be able to have a PHP script perform this task on command. Thanks!

Another EDIT: One more clarification. This is not a situation in which, say, a user makes a drawing in Flash. I am downloading raw 1-frame SWF files, and want to save PNG copies in order to reduce download time. Is such a task possible? Thanks again!

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

you can use swftools.
swfrender file.swf -o output.png

link|improve this answer
Odd. I had looked up swftools but somehow missed that particular tool that does exactly what I need. I'll check on that later today :) – Matchu Jan 5 '10 at 17:19
Seems to work instantly - and to think I already had this installed! Thanks! – Matchu Jan 5 '10 at 17:30
Sadly, this doesn't seem to work well with transparent backgrounds. Awesome tool though. One of our off shore developers is trying to suggest SWFToVideo but its $1000 for a license........ :( sad face – Tanner Watson Dec 30 '11 at 14:21
feedback

From Google: Flash screenshot

link|improve this answer
I'd prefer to start with server-side technologies, then try client-side, since there will always be malicious users out there. But thanks - I'll keep it in mind :) – Matchu Jan 4 '10 at 20:36
1  
The point of the article is that the screenshot is taken in Flash. You can do whatever you want with that image at that point. – CookieOfFortune Jan 4 '10 at 20:50
PHP will let you write that png to the server using a filestream. It's going to use the same mechanism within Flash to encode the .png data, then you just send the byte array to your PHP method. – Myk Jan 5 '10 at 1:34
feedback

not really a server based solution, but i developed an AIR utility to convert SWF to PNG sequences: http://swfrenderer.kurst.co.uk/

link|improve this answer
feedback

Depending on the type of swf's you have you could try FFmpeg from the command line:

ffmpeg -i movie.swf -f image2 -vcodec png movie%d.png
link|improve this answer
"[swf @ 0x9b822c0]Compressed SWF format not supported" - drat. Trying to Google a way out of this - apparently I should be able to build a tool that will decompress it... – Matchu Jan 4 '10 at 20:42
1  
Interesting. Now PNG is listed as one of ffmpeg's formats, but I get "could not find codec parameters" anyway. I'll keep working on it. – Matchu Jan 4 '10 at 21:38
I got this "could not find codec parameters" message too – Lohoris May 30 '11 at 9:59
It looks like ffmpeg can only convert some swf formats, depending what they include. – Lohoris May 30 '11 at 10:04
@Lo'oris: That's why my answer says it might work depending on the type of .swf. – cOle2 May 30 '11 at 14:50
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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