图片转文件流,文件流转图片

///


    /// 图片转换成字节流
    ///

    /// 要转换的Image对象
    /// 转换后返回的字节流
    public static byte[] ImgToByt(Image img)
    {
        MemoryStream ms = new MemoryStream();
        byte[] imagedata = null;
        img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
        imagedata = ms.GetBuffer();
        return imagedata;
    }
    ///
    /// 字节流转换成图片
    ///

    /// 要转换的字节流
    /// 转换得到的Image对象
    public static Image BytToImg(byte[] byt, string imgUrl)
    {
        MemoryStream ms = new MemoryStream(byt);
        Image img = Image.FromStream(ms);
        img.Save(imgUrl);
        return img;
    }
    //
    ///
    /// 根据图片路径返回图片的字节流byte[]
    ///

    /// 图片路径
    /// 返回的字节流
    private static byte[] getImageByte(string imagePath)
    {
        FileStream files = new FileStream(imagePath, FileMode.Open);
        byte[] imgByte = new byte[files.Length];
        files.Read(imgByte, 0, imgByte.Length);
        files.Close();
        return imgByte;
    }

 

 

你可能感兴趣的:(asp.net)