swf-reader
swf-reader copied to clipboard
A simple node module for reading SWF format
Added generic parsing for the DoAction tag and implemented the "Declare Dictionary" action.
Hi, I love your module and it saved my life, however, could you please add extracting of images that are compressed with ZLib? (DefineBitsLossless2) Would be very cool if you...
Correct computing: `red*65536 + green*256 + blue` Line: `swf.backgroundColor = '#' + (tag.RGB[0]*65536 + tag.RGB[1]*256 + tag.RGB[0]).toString(16);` Should be: `swf.backgroundColor = '#' + (tag.RGB[0]*65536 + tag.RGB[1]*256 + tag.RGB[2]).toString(16);`