Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I have a 1024x1024 png i want to split it into 64x64 (256 equal parts)

I have a 1024x1024 png i want to split it into 64x64 (256 equal parts)

i found a program that can do this but it's not free it's called "Split and Tile"

i would like to find out a free way to do this.

like image 514
Shereef Marzouk Avatar asked Jan 21 '11 16:01

Shereef Marzouk


People also ask

How do I split a PNG into multiple images?

Open your browser in PDF free application web site and go to Splitter tool app. Click inside the file drop area to upload PNG files or drag & drop PNG files. You can upload maximum 10 files for the operation. Click on SPLIT button.


1 Answers

ImageMagick could do that for you with a simple one-liner:

convert -crop 64x64 source.png tile%d.png
like image 135
detunized Avatar answered Sep 26 '22 02:09

detunized