Strip PNG image export?
Moderators: Víctor Paredes, Belgarath, slowtiger
Strip PNG image export?
I created an animation for the heroine in my game, but in order to import it to my game I need to export it as PNG strip (which means, one frame next to other like a spritesheet). So far I've seen AS exports only as PNG sequences. Is there an option somewhere for this?
Surely there's a way of exporting to video, and some sort of software can convert it for you?
--Scott
cribble.net
cribble.net
Well many games use it, like Insaniquarium or Dinner Dash. I guess AS is an animation software but it wouldn't hurt to export as a strip too.No. You'll need another application to splice your PNGs together. Don't blame AS, formats like this are either too old-fashioned or specialised to be included. It's like the old "Filmstrip" format of Photoshop which became obsolete with Quicktime and video editing software.
Any idea for a software?Surely there's a way of exporting to video, and some sort of software can convert it for you?
Last edited by Sindarin on Sun Sep 16, 2007 12:25 am, edited 1 time in total.
Tried, I only get information about strip comics... 
EDIT: After some searching I found: http://www.humanbalance.net/gale/us/index.html which is also free, the problem is that it exports vertical strips, not horizontal!

EDIT: After some searching I found: http://www.humanbalance.net/gale/us/index.html which is also free, the problem is that it exports vertical strips, not horizontal!

When you want to do something with images remember always that Imagemagick exists! It is free and runs on linux, mac and windows! It is a mature project with a lot of features!.
http://www.imagemagick.org/script/index.php
And for the task you need, try the command "convert" and "+append" parameter.
Read this:
http://www.imagemagick.org/Usage/mosaics/
Best
-G
http://www.imagemagick.org/script/index.php
And for the task you need, try the command "convert" and "+append" parameter.
Read this:
http://www.imagemagick.org/Usage/mosaics/
Best
-G
Thanks Genete! I tried it and it does wonders! I had to use montage.exe for it with -tile and -background "transparent" parameter.When you want to do something with images remember always that Imagemagick exists! It is free and runs on linux, mac and windows! It is a mature project with a lot of features!