• GDI+一般性错误


    通过PictureBox来保存图像到数据库,成为二进制的文件的时候,
    可能你会碰到GDI+一般性错误的消息,具体解决的办法是把他读取道
    一个新的Bitmap类中,再Save!代码如下!
    using(MemoryStream stream = new MemoryStream())
       {
        byte[] bytearr = new byte[0];
        if (this.picImage.Image != null)
        {
         try
         {
     
          Bitmap bmp = new Bitmap(picImage.Image);
          
          
          bmp.Save(stream,System.Drawing.Imaging.ImageFormat.Jpeg);
          bytearr = stream.ToArray();
          staff.StaffPhotoImg = bytearr;
         }
         catch(Exception e)
         {
          MessageBox.Show(e.Message);
         }
        }
  • 相关阅读:
    vue 短期时间
    使用moment.js写一个倒计时
    使用moment.js
    js 共用文件内容应用
    什么是闭包?闭包的优缺点?
    卧龙阶段
    音阶
    初步理解1=C
    认识简谱的构造,唱名,音名

  • 原文地址:https://www.cnblogs.com/wanghualiang/p/340513.html
Copyright © 2020-2023  润新知