swf-reader icon indicating copy to clipboard operation
swf-reader copied to clipboard

A simple node module for reading SWF format

Results 3 swf-reader issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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);`

bug