添加框到图片C#

时间:2013-05-30 11:16:18

标签: c#

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

enter image description here

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

1 个答案:

答案 0 :(得分: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));

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