1

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.

test
  • 17,706
  • 64
  • 171
  • 244

2 Answers2

3

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
mjschultz
  • 1,936
  • 1
  • 18
  • 20
1

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

Community
  • 1
  • 1
Scott Stafford
  • 43,764
  • 28
  • 129
  • 177