I am losing image quality when i overlay a rectangle onto an image. How can i stop this?
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(file))
{
Graphics graphic = new Graphics(image);
graphic.FillRectangles(new Aspose.Imaging.Brushes.SolidBrush(Aspose.Imaging.Color.Black), rectangles);
image.Save();
}