test
test

Reputation: 18198

Stick multiple images together

Is there a program which lets you dump an image and then you can put all the images you dumped into one image? I want to know this so I can build my tileset faster....

Thanks.

Upvotes: 1

Views: 3451

Answers (2)

Scott Stafford
Scott Stafford

Reputation: 44828

If you mean HTML sprites, this website does it automatically: http://spriteme.org/. Also see this Stack Overflow question: Tools to make CSS sprites?

Upvotes: 1

mjschultz
mjschultz

Reputation: 2026

If you are on Linux, OS X, or Windows there is a great command line image manipulation tool called ImageMagick. Included in it is the montage utility that takes a bunch of images and tiles them together, saving them in one file. The most basic command form is:

montage input1.png input2.png input3.png input4.png montage-output.png

Upvotes: 3

Related Questions