#5 png2swf
open
nobody
5
2003-08-26
2003-08-26
Anonymous
No
Discussion
Log in to post a comment.
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Logged In: NO
FileInputStream pngIn = new FileInputStream( args[0] );
BufferedImage theInImage = ImageIO.read(pngIn);
int width = theInImage.getWidth(null);
int height = theInImage.getHeight(null);
com.anotherbigidea.flash.movie.Image.Lossless ll =
ImageUtil.createLosslessImage((java.awt.Image)theInImage,
5, true);
com.anotherbigidea.flash.movie.Shape simage =
ImageUtil.shapeForImage
((com.anotherbigidea.flash.movie.Image)ll,width,height);