Split and image into two equal parts.
Posted: 2017-12-08T16:54:38-07:00
Need help. I'm trying to split an image into two parts. The original is 1272x954. I need to split it in half so I get two images that are 636x954. I have tried:
and:
I always get eight images of varying size. Three that are *x848, three that are *x106 and two that are 1x1.
When I try:
I get one image that is 312x848 starting at the top left of the original image.
I have looked at the documentation and googled until my eyes hurt. What am I missing/doing wrong?
Also, Im on a windows 10 system if that makes a difference.
Code: Select all
magick convert out00.png -crop 50%x100% +repage splitleftout%02d.png
Code: Select all
magick convert out00.png -crop 636x954 +repage splitleftout%02d.png
When I try:
Code: Select all
magick convert out05.png -crop 636x954+0+0 +repage splitleftout%02d.png
I get one image that is 312x848 starting at the top left of the original image.
I have looked at the documentation and googled until my eyes hurt. What am I missing/doing wrong?
Also, Im on a windows 10 system if that makes a difference.