How can i fill a rotated rectangle? I can only fill a rectangle that is not rotated and it works fine. But i recently need to fill a rotated rectangle on any degree.
This is my code
using (ImageMagick.MagickImage img = new ImageMagick.MagickImage())
{
img.Read(image.FullPath);
foreach (var item in ListofCoordinates)
{
ImageMagick.DrawableFillColor fillColor = new ImageMagick.DrawableFillColor(System.Drawing.Color.LightGray);
var d = int.Parse(Math.Round(((item.Rotation * img.Density.X) / 96)).ToString());
var x = int.Parse(Math.Round(((item.X * img.Density.X) / 96)).ToString());
var y = int.Parse(Math.Round(((item.Y * img.Density.X) / 96)).ToString());
var w = int.Parse(Math.Round(((item.Width * img.Density.X) / 96)).ToString());
var h = int.Parse(Math.Round(((item.Height * img.Density.X) / 96)).ToString());
var r = new System.Drawing.Rectangle(x, y, w, h);
ImageMagick.DrawableRectangle rect = new ImageMagick.DrawableRectangle(r);
img.Draw(fillColor, rect);
}
img.Write(System.IO.Path.Combine(OutputPath, image.FileName));
}
This is a sample of what i should achieve
This is the sample image this is the First picture
This is the output This is the second picture which is the output
Well, while you could use ImageMagic, the .Net libraries are sufficient.
There are few ways to draw shape like rotated rectangle.
1) Draw 4 points (you could draw any shape this way, not only rectangle), rotate it
C#
VB.NET
2) Draw 4 points already rotated
C#
VB.NET
3) Draw rectangle and rotate graphics. This might be little bit tricky.
C#
VB.NET