C# DrawToBitmap截取from图的问题,不要推荐我用API!!

截取form窗体的代码:BitmapformBitmap=newBitmap(this.Width,this.Height);this.DrawToBitmap(form... 截取form窗体的代码:
Bitmap formBitmap = new Bitmap(this.Width, this.Height);
this.DrawToBitmap(formBitmap, new Rectangle(0, 0, this.Width, this.Height));
formBitmap.Save(@"d:\form.bmp", ImageFormat.Bmp);
但是这个代码截取出来有标题栏在里面,怎么能做到一截就把标题栏去掉,只截form的工作区域????先声明,用this.ClientSize.Width一样不行,还是有工作区域!!
展开
 我来答
yewude15
推荐于2018-03-23 · TA获得超过149个赞
知道答主
回答量:77
采纳率:0%
帮助的人:67.9万
展开全部
Bitmap sourceBitmap = new Bitmap(this.Width, this.Height);
this.DrawToBitmap(sourceBitmap, new Rectangle(0, 0, this.Width, this.Height));
sourceBitmap.Save(@"d:\form2.bmp");

Bitmap resultBitmap = new Bitmap(this.Width, this.ClientSize.Height);
Graphics gr = Graphics.FromImage(resultBitmap);
Rectangle sourceRectangle = new Rectangle(0, this.Height - this.ClientSize.Height, this.Width, this.ClientSize.Height);
Rectangle resultRectangle = new Rectangle(0, 0, this.Width, this.ClientSize.Height);
gr.DrawImage(sourceBitmap, resultRectangle, sourceRectangle, GraphicsUnit.Pixel);//截取图片中的一部分
resultBitmap.Save(@"d:\form.bmp");
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
GPY11
2009-11-23 · TA获得超过681个赞
知道小有建树答主
回答量:309
采纳率:0%
帮助的人:253万
展开全部
this.DrawToBitmap(formBitmap,new Rectangle(0,0,this.Width,this.Height));
//修改成this.DrawToBitmap(formBitmap,new Rectangle(0,30,this.Width,this.Height)); 试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wdby
2009-11-23 · TA获得超过1792个赞
知道小有建树答主
回答量:590
采纳率:0%
帮助的人:662万
展开全部
工作区域的矩形应该为
Rectangle(0, this.Height - this.Bottom, this.Width, this.Height)

this.Bottom的描述为:获取控件下边缘与其容器的工作区上边缘之间的距离(以像素为单位)。

Done
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式