1

我想添加到图片黑匣子。怎么做?

在此处输入图像描述

  using (var image = Image.FromFile(imagePath))
  {
        using (var newImage = ScaleImage(image, 300, 400))
        {
              int width = newImage.Size.Width;
              int height = newImage.Size.Height;
              Graphics DrawingSurface = Graphics.FromImage(newImage);
              //graphics.DrawRectangle(); ????
              newImage.Save(imagePathDuzy);
        }
  }
4

1 回答 1

5

在 Graphics 类型上使用 FillRectangle 方法之一:http: //msdn.microsoft.com/en-us/library/yysstebh.aspx

大概是这样的:

DrawingSurface.FillRectangle(new SolidBrush(Colors.Black), new Rectangle(0, height - 100, width, height));

这将在图像底部绘制一个高度为 100px 的黑色矩形。

于 2013-05-30T11:20:17.507 回答