pngtoolskit.org
PNG and image utilities, in the browser
Say hi →

Split tiles

slice into N×M grid · ZIP per file

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

    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).