Background Pattern to Use with Extent()?

Magick.NET is an object-oriented C# interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick.NET
Post Reply
GlennIM
Posts: 23
Joined: 2018-07-22T22:22:12-07:00
Authentication code: 1152

Background Pattern to Use with Extent()?

Post by GlennIM »

Is it possible to use some kind of Gradient or Background "hatched" pattern image instead of a color when using to fill the background when calling Extent?

Here is my current code...

modimage.Resize(1000, 1500);
modimage.BackgroundColor = ColorTranslator.FromHtml("#0079F2"); // blue
modimage.Extent(1000, 1500, Gravity.Center);
Post Reply