c# 如何打印panel里的内容?

如题能把打印原理讲一遍吗?当前上下文不存在名称BitBltprint_imageprintDocument1... 如题
能把打印原理讲一遍吗?
当前上下文不存在名称 BitBlt print_image printDocument1
展开
 我来答
tfc2005
推荐于2017-09-13 · TA获得超过302个赞
知道小有建树答主
回答量:156
采纳率:0%
帮助的人:0
展开全部
private void btnPrint_Click(object sender, System.EventArgs e)
{
Graphics graphic = panelReports.CreateGraphics();
Size s = panelReports.Size;
Bitmap memImage = new Bitmap(s.Width, s.Height, graphic);
Graphics memGraphic = Graphics.FromImage(memImage);
IntPtr dc1 = graphic.GetHdc();
IntPtr dc2 = memGraphic.GetHdc();
BitBlt(dc2, 0, 0, panelReports.ClientRectangle.Width, panelReports.ClientRectangle.Height,
dc1, 0, 0, 13369376);

//Clone the bitmap so we can dispose it.
print_image = (Image)memImage.Clone();
graphic.ReleaseHdc(dc1);
memGraphic.ReleaseHdc(dc2);
graphic.Dispose();
memGraphic.Dispose();
memImage.Dispose();

PrintPreviewDialog dlg = new PrintPreviewDialog() ;
dlg.Width = 800;
dlg.Height = 600;
dlg.Document = printDocument1;
if (dlg.ShowDialog() == DialogResult.OK)
printDocument1.Print();
}

panelReports是panel的name
毛苒U0
2020-04-02 · TA获得超过3688个赞
知道大有可为答主
回答量:3128
采纳率:33%
帮助的人:214万
展开全部
//panel1中包含的图片都必须存在,如果是动态添加的就要保存成数据流来显示,显示后不要释放。或定义PictureBox
Image的显示文件路径
//以panel1为新图象大小设定图片的宽高和其它参数,System.Drawing.Imaging.PixelFormat中还有像素,Alpha等,根据需要自己定义
Bitmap
bmp
=
new
Bitmap(panel1.Width,
panel1.Height,
System.Drawing.Imaging.PixelFormat.Format24bppRgb);
//新建绘制到bmp
Graphics
g
=
Graphics.FromImage(bmp);
g.Clear(Color.White);//上底色
foreach
(PictureBox
pb
in
panel1.Controls)
{
//绘制包含的图象
g
=
Graphics.FromImage(pb.Image);
g.DrawImage(bmp,
pb.Location.X,
pb.Location.Y);
}
//panel1外的pictureBox输出,要保存写成bmp.Save(路径,格式);
this.pictureBox3.Image
=
(Image)bmp;
g.Dispose();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
貂蛇情z
2012-02-27 · 超过13用户采纳过TA的回答
知道答主
回答量:66
采纳率:0%
帮助的人:45.7万
展开全部
我也遇到了同样的问题。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式