0
private void bt_saveImage_Click(object sender, System.EventArgs e)   
{
   using (Bitmap printImage = new Bitmap(tlp.Width, tlp.Height))
   {
       tlp.DrawToBitmap(printImage, new Rectangle(0, 0, printImage.Width, printImage.Height));                   
       printImage.Save( "C:/image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);
   }              
   throw new System.NotImplementedException();       
} 

我有错误提示“ExternalException 未处理;GDI+ 中发生一般错误。” 在 "printImage.Save( "C:/image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg)

感谢帮助!

4

1 回答 1

0

在“C:\image.jpg”之前使用@

printImage.Save( @"C:\image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg)

或者

在位置中使用“\\”

printImage.Save( "C:\\image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg)
于 2012-08-21T12:53:11.373 回答