Search found 4 matches

by Koozer
2017-03-18T05:53:00-07:00
Forum: Users
Topic: Rotating, merging and cropping batch of images
Replies: 6
Views: 3968

Re: Rotating, merging and cropping batch of images

So Powershell was reading the brackets as special characters rather than literals, which was easy enough to solve by escaping with `. The bit that stumped me was that it still didn't work for some mysterious reason. Turns out Imagemagick doesn't like it if your brackets don't have spaces around them ...
by Koozer
2017-03-16T08:57:19-07:00
Forum: Users
Topic: Rotating, merging and cropping batch of images
Replies: 6
Views: 3968

Re: Rotating, merging and cropping batch of images

Ah so it's a Powershell issue not Imagemagick? That narrows it down at least, thanks!
by Koozer
2017-03-16T08:03:25-07:00
Forum: Users
Topic: Rotating, merging and cropping batch of images
Replies: 6
Views: 3968

Re: Rotating, merging and cropping batch of images

Thanks for the suggestion, but I get an error on the rotation when I try that: You must provide a value expression on the right-hand side of the '-' operator. At line:1 char: + magick ( "01022017083759_01.jpg" - <<<< rotate 270 ) ( "01022017083759_02.jpg" -rotate 90 ) +append -crop 7633x5767+1975.5 ...
by Koozer
2017-03-16T07:16:20-07:00
Forum: Users
Topic: Rotating, merging and cropping batch of images
Replies: 6
Views: 3968

Rotating, merging and cropping batch of images

Hi there, I have the need to rotate pairs of images, stitch them horizontally and then crop to a certain size. Currently I'm doing this one step at a time and producing lots of excess images as my attempts to pipe outputs is failing me. I'm trying to do something like the following in Powershell ...