-
I use the following cmdline to get a ring from a line (similar to this https://www.imagemagick.org/Usage/distorts/#polar
if i use this
the result ist not a ring but a quarter circle |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You are very close. You will need to add p.s. The |
Beta Was this translation helpful? Give feedback.
-
Thank you. It works now. |
Beta Was this translation helpful? Give feedback.
You are very close. You will need to add
DistortSettings
to theDistort
method and set theBestfit
totrue
. The+distort
option means thatBestfit
is set totrue
. And with-distort
this option is set tofalse
.p.s. The
MagickImage
class isIDisposable
so you should either useusing
orDispose()
the image.