Split tiles
Drop images and slice each into a uniform N×M grid of tiles. Each input produces one ZIP containing all the tile PNGs.
Drop image files here
Multiple files allowed · same grid applied to each
no files
Ready.
When to use this tool
Reverse of sprite-sheet — pull individual tiles out of a packed sprite, generate a 9-square Instagram grid from one image, or break a large image into manageable parts.
Use cases
- Sprite extraction. Already know the rows / cols of a packed sprite? Slice it back.
- Instagram grid post. 3×3 tiles from one image for a unified grid layout.
- Large image splitting. Break a 10000×10000 panorama into 4×4 tiles.
- Print panels. Wall-art posters chopped into A4-sized panels for home printing.
FAQ
What if image dimensions aren't divisible by N×M?
Tile size is rounded down (Math.floor); the right and bottom edges may have a few pixels missing. For exact slicing, ensure the source dimensions are evenly divisible.
Are tiles named in row,col order?
Yes — name-1x1.png, name-1x2.png, …, name-2x1.png, … (row first, then column).