Base64toImage

 //调
        public Bitmap Base64toImage(string Strbase64)

        {

            byte[] byDep = Convert.FromBase64String(Strbase64);
            MemoryStream msDep = new MemoryStream(byDep);
            Bitmap bitDep = new Bitmap(msDep);
            return bitDep;

        }

你可能感兴趣的:(服务器)