C# Base64转图片,并保存到服务器上

        ///


        /// 图片上传 Base64解码
        ///

        /// Base64数据
        /// 保存路径
        /// 图片名字
        /// 返回一个相对路径

public string decodeBase64ToImage(string dataURL,string path,string imgName)
        {

            string filename = "";//声明一个string类型的相对路径

            String base64 = dataURL.Substring(dataURL.IndexOf(",") + 1);      //将‘,’以前的多余字符串删除

            System.Drawing.Bitmap bitmap = null;//定义一个Bitmap对象,接收转换完成的图片

 

            try//会有异常抛出,try,catch一下
            {

 

                String inputStr = base64;//把纯净的Base64资源扔给inpuStr,这一步有点多余

                byte[] arr = Convert.FromBase64String(inputStr);//将纯净资源Base64转换成等效的8位无符号整形数组

                System.IO.MemoryStream ms = new System.IO.MemoryStream(arr);//转换成无法调整大小的MemoryStream对象
                System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(ms);//将MemoryStream对象转换成Bitmap对象
                ms.Close();//关闭当前流,并释放所有与之关联的资源
                bitmap = bmp;
                filename = path + "/Knowledge_" + imgName + ".png";//所要保存的相对路径及名字
              string tmpRootDir = Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString()); //获取程序根目录 
                string imagesurl2 = tmpRootDir + filename.Replace(@"/", @"\"); //转换成绝对路径 
                bitmap.Save(imagesurl2, System.Drawing.Imaging.ImageFormat.Png);//保存到服务器路径
            }
            catch (Exception)
            {
            }
            return filename;//返回相对路径
        }

你可能感兴趣的:(C#,Base64)