Split an image into 3 columns (and as many rows as you want). Post the tiles in reverse order (bottom to top, right to left) so they line up correctly in the feed, forming the complete image.
Split an image into a grid of tiles for Instagram carousels or sprites, and download as .zip.
Splitting a large image into a grid of tiles serves two very different uses. The most popular is creating the mosaic effect on the Instagram feed, where a single image spreads across several posts and, seen together in the profile grid, form the complete artwork, or a carousel from a panorama. The other is technical: slicing sprites and texture atlases into individual images for games and animation. The tool draws the cut lines over the preview, crops each tile and exports them all as PNG (preserving quality and transparency), gathered into a single .zip. All local, without sending the image to servers.
You set rows and columns, and the tool divides the image's width and height by those numbers to find each tile's size. When a dimension is not exactly divisible (for example, 1000 px into 3 columns), the last column and last row absorb the leftover pixels, so no pixel is lost and the reassembled image is identical to the original.
Each tile is named by its position in the grid (row × column), which makes reassembly or posting in the right order much easier. All come in a single .zip, avoiding dozens of individual downloads.
Example 1, a feed mosaic (3×3): split the image into 3 columns and 3 rows to get 9 tiles. Post them in reverse order (the bottom-right tile first, going up) so that, in the profile grid, they line up and form the complete artwork.
Example 2, a panoramic carousel (3×1): split a very wide photo into 3 columns and 1 row. Posted as a swipeable carousel, the three tiles recreate the feeling of a continuous panorama as you swipe from one to the next.
Beyond social media, grid splitting is useful for game development: a sprite sheet (several poses of a character in one image) can be sliced into individual frames. The same applies to texture atlases, when you need the pieces separated.
There is also large-format printing: splitting a poster into tiles that fit an ordinary printer lets you assemble a giant image afterward by taping the sheets. Because the export is lossless PNG, the tiles' quality is identical to the original image.
Paste the code into your HTML and the tool shows up on your page, without J-Kit's navigation and ads. It still runs in the browser of whoever visits your site.
<iframe
src="https://jkit.tools/embed/en-US/split-image-grid"
width="100%"
height="600"
style="border:0"
loading="lazy"
title="Split Image into Grid"
></iframe>Split an image into 3 columns (and as many rows as you want). Post the tiles in reverse order (bottom to top, right to left) so they line up correctly in the feed, forming the complete image.
Splitting happens entirely in your browser. No image is sent to any server.