码迷,mamicode.com
首页 > Windows程序 > 详细

【WPF】释放图像资源, [删除时报另一进程占用]

时间:2016-05-20 18:59:54      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

源:zhantianyou

技术分享

CODE

        private BitmapImage ReturnBitmap(string destFile)
        {
            // Read byte[] from png file
            BinaryReader binReader = new BinaryReader(File.Open(destFile, FileMode.Open));
            FileInfo fileInfo = new FileInfo(destFile);
            byte[] bytes = binReader.ReadBytes((int)fileInfo.Length);
            binReader.Close();

            // Init bitmap
            BitmapImage bitmap = new BitmapImage();
            bitmap.BeginInit();
            bitmap.StreamSource = new MemoryStream(bytes);
            bitmap.EndInit();
            return bitmap;
        }

 

【WPF】释放图像资源, [删除时报另一进程占用]

标签:

原文地址:http://www.cnblogs.com/oiliu/p/5512802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!