How do you process / manage split images

We have a requirement to display short / large image sizes. (for example, I could have the front of the tire, the back of the tire and the middle of the tire as separate images).

So, to demonstrate the above, I could try

front,middle,middle,back (to construct shorter image)
front,middle,middle,middle,middle,back (to construct bigger image)

Are there any sites that allow you to download such images (i.e. they are already divided) OR that would be an easier way to achieve this from an existing image.

+3
source share
3 answers

You can use ImageMagick. Check out the following example .

In your case, if you want to split the image only horizontally (say) 200px fragments:

convert -crop 200 +repage verybig.jpg slice%02d.jpg
+7

HTML/CSS, , , , .

: http://jsfiddle.net/gjJcM/

- , , - , .

+3

Gimp.

Gimp- > Map- > Make-Seamless. , , . , , , .

panotools.

Combining pieces at the end is easiest if you include half the middle of the tire with the rear and half mid in the front. You will not get a bus without a middle, but from the question, this is not what you need.

+2
source

All Articles