I have a very big image and would like to break the big images and create smaller tiles.
Any idea if I can use some software to do it?
by Linus Kleen
Picture of the Week Themes
Suggest and vote on themes
Please participate in Meta
and help us grow.
|
I have a very big image and would like to break the big images and create smaller tiles. Any idea if I can use some software to do it? |
||||
|
|
|
My first thought was ImageMagick, and indeed it will work for this. I had a 3504x2336 image, so to convert it into 16 images (a 4x4 tile set) I divided each dimension by 4 and then used:
And, here's a screenshot of performing that with "-crop 125x125" on a 500x500 image:
|
|||
|
|
|
The Rasterbator is free, open source, and available for Windows or as an online tool. The output of Rasterbator is amplitude modulated (the dots vary in size) halftone image. Thus it will not be a 1 for 1 representation of the original image. Rather it is meant to be displayed in a very very large format, and viewed from a long distance. I once made a image the size of a standard door in my home. It was printed on a black and white laser printer, and assembled by me. The output was quite impressive, but it is an artistic look that does not fit in every case. You can find more information about tiled printing solutions, as well as other options at the wikipedia article for Tiled Printing here. |
|||||||
|
|
If you have MATLAB, you can tile your image very easily to any combination of tile sizes by loading the image into a matrix, then saving the submatrices of the required size as images. |
|||||||
|