Séparateur d'images

Outils de canevas locaux · jusqu'à 20 Mo par image

Déposez l'image ici ou cliquez pour télécharger

Déposez l'image ici

Fichier trop volumineux (max 20 Mo)

Image Splitter: beyond rows and columns—lock traverse order, seam no-fly zones, and ZIP filename sorting

This tool slices one master image into equal grid cells as PNG files and zips them for local browser download without uploading your artwork to a server. Most failures are not “cannot cut” but math and process: when width or height is not evenly divisible by columns or rows, the last strip can be one pixel narrower or shorter, and scripts that assume identical cell sizes misalign. PNG is lossless but heavy—many tiles balloon ZIP size and slow handoff. Cross-channel teams must agree on row-major vs column-major numbering, zero-padding width, and Instagram’s grid read order versus post timeline (newest posts anchor the bottom-right thumbnail). Print and ticket workflows add bleed, minimum type size, and binding margins. Write those rules in the brief before debating “which tile is #4.”

How to use Image Splitter: prove integer division first, overlay seams, then rehearse uploads with a sorted ZIP

  1. Read native width and height, verify both divide cleanly by your row and column counts; if there is a remainder, pad the canvas, change the grid, or document uneven tail strips for downstream stitchers. At the same time fix row-major or column-major naming plus zero-padding so lexical sort matches human intent—avoid `tile_10` sorting before `tile_2`.
  2. Enable the grid overlay and check faces, hero type, logos, and QR codes against blade lines; zoom hairline icons and sub-12px copy. If the destination recompresses or rounds corners mentally, reserve a safe margin beyond the full-size comp.
  3. After export, sort the folder in the exact upload order and dry-run the sequence; include an index sheet or table mapping numbers to thumbnails for operators. For commercial use store source hashes, grid parameters, and timestamps so replacements and legal evidence stay traceable.

Image Splitter FAQ: remainder pixels, ordering, lossless weight, and cross-channel read order

One column renders a pixel narrower than the others and our stitching script drifts—is the splitter wrong or did the master dimensions disagree with the grid?
Usually integer division remainder is absorbed by the last column or row. Either resize the canvas so both axes divide evenly, or explicitly allow variable tail widths and read actual per-tile dimensions in code instead of a single `cellW` constant. Verify with a calculator before you patch frontend math.
Filenames sort correctly on macOS and Windows but the Instagram story on the profile grid reads backwards—bad names or platform layout rules?
Often it is layout: newest posts occupy the bottom-right and push older tiles up-left, opposite of many ascending filename habits. Ship a diagram mapping “publish attempt N → final grid cell” and name files by publish order, not dictionary order. Validate with a private test account before the campaign batch.
Transparent PNG tiles explode ZIP size and email limits—any mitigation that keeps seams clean?
Large alpha areas stay large after slicing. Flatten to brand white or gray before export when transparency is unnecessary, or shrink oversized canvases first. If alpha is mandatory, merge redundant empty regions upstream; splitting alone cannot compress away transparency.
The same tiles serve ads and internal tickets—how do we stop “tile id matches but asset version does not” arguments?
Embed the master version or short Git hash in filenames (`hero_v3_r2c3.png`) and require tickets to cite that id plus a link to the archived ZIP. Ban vague references like “bottom-right tile,” which move with responsive layouts. Only rename for publishing after approval locks.
Deadlines tempt skipping the grid preview—which mistakes historically cause fire drills?
Headlines bisected by seams, QR codes centered on four-way intersections, transparent art vanishing on dark profile chrome, and reversed upload order collapsing a week-long narrative. At minimum run the busiest hero frame through the full grid and upload rehearsal before cloning settings across a batch.
More versions