我只知道RDLC报表可以打印图片,不知道别的方式

解决方案 »

  1.   

    拖一个printDocument 
    private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
            {
                e.Graphics.DrawImage(Image.FromFile("图片路径"),, e.PageBounds);
            }打印事件
      private void button5_Click(object sender, EventArgs e)
            {
                    printDocument1.Print();
             }
      

  2.   

    e.Graphics.DrawImage(Image.FromFile("图片路径"),, e.PageBounds); 好象可以搞定地