日期:2014-05-18 浏览次数:21115 次
           String xxx = Convert.ToBase64String(System.IO.File.ReadAllBytes("path"));
            byte[] path = Convert.FromBase64String(xxx);
            using (MemoryStream ms = new MemoryStream(path))
            {
                Image outputImg = Image.FromStream(ms);
            }