我想添加图片黑匣子。怎么做?
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);
}
}
答案 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的黑色矩形。