Replies: 1 comment
-
If you need those methods you should change the use Long story short. You are probably doing something along the lines of |
Beta Was this translation helpful? Give feedback.
-
If you need those methods you should change the use Long story short. You are probably doing something along the lines of |
Beta Was this translation helpful? Give feedback.
-
Hi,
I've read of two different ways to write text t images. One is this:
This is not working for me, because Draw expects an
IMagickImage<ushort>
and myimage
isIMagickImage
.The other one is listed in the documentation here: https://github.com/dlemstra/Magick.NET/blob/master/docs/Drawing.md. This second one uses:
image.Composite(caption, 590, 450, CompositeOperator.Over);
But the
IMagickImage
interface doesn't have theComposite()
method.I'm a bit lost with
MagickImage
,IMagickImage
,IMagickImage<ushort>
and the fact that they seem to have diffferent capabilities and be accepted by different methods. Is there any documentation page to help understand this? and how do I write to myIMagickImage
?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions