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)
“
感谢帮助!