Photohop - batch iimport images into 1 file

BlitzMax Forums/BlitzMax Beginners Area/Photohop - batch iimport images into 1 file

Dax Trajero(Posted 2006) [#1]
Is it possible in Photoshop to batch import 128 individual sprite .png files to create one large file containing them all ?

Or perhaps there's a 3rd party app that can merge lots of .png images into a single .png file. The single .png file containing an "image strip" of all the individual .png files


degac(Posted 2006) [#2]
why don't use Bmax for this?
It's quite easy: put all the image in a directory, read the single images from it, then draw on the screen and finally save the buffer as a big image.
Somewhere on my hd I should have the source...

[edit]


Not the best piece of program...but it works!


BlackSp1der(Posted 2006) [#3]
I want a psd loader too, because you can edit the graphics in photoshop easily.
No need to load all the frames in different windows.
there is some examples of psd loaders in C++ in internet.


bregors(Posted 2006) [#4]
.


Dax Trajero(Posted 2006) [#5]
ok, before I say the replies, I checked out GraphicsGale (there's a link to it from the tool box section on this website) and I *thought* it would be perfect, plus its free!!

Turns out it'll only handle 24 bit PNG files, so my question would be can you do alpha transparency with 24bit PNG ?


Dax Trajero(Posted 2006) [#6]
degac, thanks for the code - worked beautifully.