Hi,
I'm trying to draw a transparent rectangle on a specific image using the below code.
And I'm always ended up with a NOT transparent regular white rectangle. The part of the code that draws a text on that rectangle is working just fine. My problem is only that I need that rectangle to be a transparent/ opacity 0.5.
How can I do this? How can I do a white background with 50% opacity?
Thanks.
I'm trying to draw a transparent rectangle on a specific image using the below code.
privatestatic MagickImage ApplyWatermark(MagickImage image, string waterMarkText) { var backgroundOfWaterMark = new MagickImage(new MagickColor("#FFFFFF"), image.Width, 20) { Format = MagickFormat.Png }; var img = image; img.Composite(backgroundOfWaterMark, 0, img.Height - 20); img.Format = MagickFormat.Png; var font = new DrawableFont("Batang"); var text = new DrawableText(3, img.Height - 7, waterMarkText); var size = new DrawablePointSize(13); var fillColor = new DrawableFillColor(new MagickColor("#000000")); image.Draw(font, size, fillColor, text); backgroundOfWaterMark.Dispose(); image.Dispose(); font.Dispose(); text.Dispose(); size.Dispose(); fillColor.Dispose(); return img; }
How can I do this? How can I do a white background with 50% opacity?
Thanks.