Bitmap循环加载图片出现内存不足解决办法

              循环加载图片的时候报错“内存不足”,解决办法,下面是我的个人实例:

原来的写法(会报“内存不足”):

        private void aviSaveAs()
        {
            try
            {
                OleDbConnection conn = bc.GetConn();
                conn.Open();
                OleDbCommand cmd = new OleDbCommand("select strPath from tb_VideoPath where ID=1", conn);
                string str = cmd.ExecuteScalar().ToString().Trim();
                FileInfo fi = new FileInfo(str);
                if (fi.Exists)
                {
                    fi.Delete();
                }
                conn.Close();
                aviWriter = new AVIWriter();
                //avi中所有图像皆不能小于width及height
                avi_frame = aviWriter.Create(str, 1, SWidth, SHeight);
                for (int i = 0; i < al.Count; i++)
                {
                    //获得图像
                    Bitmap cache = new Bitmap(Image.FromFile(al[i].ToString()));
                    //由于转化为avi后呈现相反,所以翻转
                    cache.RotateFlip(RotateFlipType.Rotate180FlipX);
                    //载入图像                    
                    aviWriter.LoadFrame(cache);
                    aviWriter.AddFrame();

                    //释放文件流资源
                    imgstream.Dispose();
                    cache.Dispose();                    
                }
                aviWriter.Close();
                avi_frame.Dispose();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

修改后的写法(改用加载文件流,然后可以用完即使释放资源就不会出现内存不足):

        private void aviSaveAs()
        {
            try
            {
                OleDbConnection conn = bc.GetConn();
                conn.Open();
                OleDbCommand cmd = new OleDbCommand("select strPath from tb_VideoPath where ID=1", conn);
                string str = cmd.ExecuteScalar().ToString().Trim();
                FileInfo fi = new FileInfo(str);
                if (fi.Exists)
                {
                    fi.Delete();
                }
                conn.Close();
                aviWriter = new AVIWriter();
                //avi中所有图像皆不能小于width及height
                avi_frame = aviWriter.Create(str, 1, SWidth, SHeight);
                for (int i = 0; i < al.Count; i++)
                {
                    //获得图像
                    Stream imgstream = System.IO.File.Open(al[i].ToString(), FileMode.Open);
                    Image img = Image.FromStream(imgstream);
                    //Bitmap cache = new Bitmap(Image.FromFile(al[i].ToString()));
                    Bitmap cache = new Bitmap(img);
                    //由于转化为avi后呈现相反,所以翻转
                    cache.RotateFlip(RotateFlipType.Rotate180FlipX);
                    //载入图像                    
                    aviWriter.LoadFrame(cache);
                    aviWriter.AddFrame();

                    //释放文件流资源
                    imgstream.Dispose();
                    cache.Dispose();
                    
                }
                aviWriter.Close();
                avi_frame.Dispose();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值