Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: How to draw a transparent rectangle at a specific location, on a specific image?

$
0
0
Hi,

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;
}
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.

Viewing all articles
Browse latest Browse all 3693

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>