Search found 6 matches

by Zoker
2016-01-08T18:10:35-07:00
Forum: Users
Topic: Adding current number into image and wait 1 second between output
Replies: 4
Views: 3344

Adding current number into image and wait 1 second between output

Hi there, Two questions: 1. I want to add the current number (%d) of the image at the right bottom corner in red. I read the annotation doc, but they just many things, about how to place it, so it's readable. I don't need that. I only want to place it there. How can I do that? How can I set the font ...
by Zoker
2016-01-07T18:01:17-07:00
Forum: Users
Topic: Cut image into pieces and recombine 3 horizontal
Replies: 8
Views: 6152

Re: Cut image into pieces and recombine 3 horizontal

Works!!!

I have two images and the first is from 1-133 and the second from 134-x
by Zoker
2016-01-07T17:44:09-07:00
Forum: Users
Topic: Cut image into pieces and recombine 3 horizontal
Replies: 8
Views: 6152

Re: Cut image into pieces and recombine 3 horizontal

It should have started with 0, not 1. I believe this should work to start at 134. convert input.png -flip -crop 800x1200 -flip -scene 134 output_%d.png Thank you so much! Now everything works well, but one thing: montage cropped_*.png -geometry +0+0 -tile 3x1 out_%d.png Most images are put together ...
by Zoker
2016-01-07T16:09:37-07:00
Forum: Users
Topic: Cut image into pieces and recombine 3 horizontal
Replies: 8
Views: 6152

Re: Cut image into pieces and recombine 3 horizontal

This should flip all image back again and number them from the original bottom. The last section at the top of the image may be a partial size. The input image needs to come before the crop: convert input.png -flip -crop 800x1200 -flip output_%d.png Perfect thanks! Can I somehow set the starting ...
by Zoker
2016-01-07T14:38:52-07:00
Forum: Users
Topic: Cut image into pieces and recombine 3 horizontal
Replies: 8
Views: 6152

Re: Cut image into pieces and recombine 3 horizontal

sas wrote:

Code: Select all

convert -flip -crop 800x1200 -flip input.png output_%d.png
Awesome, thank you!

But he does not flip the images back again. Only the last one (in this case the top part) is flipped back, but no all others.

The others are not only flipped vertically, but also horizontal...
by Zoker
2016-01-07T03:10:21-07:00
Forum: Users
Topic: Cut image into pieces and recombine 3 horizontal
Replies: 8
Views: 6152

Cut image into pieces and recombine 3 horizontal

Hi there, I have three questions: I want to first cut a image vertical into multiple pieces of the same size. So I have a 800x5000px image for example and want to have 800x1200px images (the last image should be only the rest 800x200px image + white background) convert -crop 800x1200 input.png ...