-
I already had a look at #1301 but there are some questions left.
with Magick.NET. (Look out that the 2nd image is somewhat larger.) After some testing, I arrived at
In contrast to the command-line version, I had to specify the image extension; "+10+10" did not do what I intended. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It looks like you might have found a bug. The There is no method to get the max width or height in a collection but you can do something like this with linq: |
Beta Was this translation helpful? Give feedback.
It looks like you might have found a bug. The
+10+10
is translated to to0x0+10+10
and that is probably causing your problem here. I will need to check what to do here instead.There is no method to get the max width or height in a collection but you can do something like this with linq:
var maxWidth = images.Max(image => image.Width);