24Dec/112
To split an image into tiles using ImageMagick
If you've got ImageMagick installed, you can split an image into squares with a command like:
convert -crop 256x256 terrain.png tiles/tile%03d.png
I'm using this to break up a MineCraft texture I downloaded.
March 4th, 2013 - 04:15
nice
April 28th, 2013 - 22:04
Thanks