首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

flex将图片转成ByteArray后传给web服务,web服务将字节流保存图片,该如何解决

2013-12-26 
flex将图片转成ByteArray后传给web服务,web服务将字节流保存图片public string GetImageFromByte(byte[] b

flex将图片转成ByteArray后传给web服务,web服务将字节流保存图片


public string GetImageFromByte(byte[] bytearray, double xmin, double xmax, double ymin, double ymax, string countryName,int width,int height)
    {
        MemoryStream mstream = new MemoryStream(bytearray);
        Image image = Image.FromStream(mstream);
        image.Save(@"d:\test.jpg");
        return "Hello World";
    }


执行到Image image = Image.FromStream(mstream);后报错,参数异常
[解决办法]
引用:

public string GetImageFromByte(byte[] bytearray, double xmin, double xmax, double ymin, double ymax, string countryName,int width,int height)
    {
        MemoryStream mstream = new MemoryStream(bytearray);
        Image image = Image.FromStream(mstream);
        image.Save(@"d:\test.jpg");
        return "Hello World";
    }


执行到Image image = Image.FromStream(mstream);后报错,参数异常


不是这么写的,百度下把!一大把!

热点排行