Image.FromStream 抛出 ArgumentException:参数无效



>我正在尝试通过HttpHandler将图像输出到输出流中,但它不断抛出ArgumentException。我已经用谷歌搜索了这个问题并尝试了很多事情,但我仍然无法解决问题。无论如何,这是代码:

    public void ProcessRequest(HttpContext context)
    {
        Int32 imageId = context.Request.QueryString["id"] != null ? 
            Convert.ToInt32(context.Request.QueryString["id"]) : default(Int32);
        if (imageId != 0)
        {
            //context.Response.ContentType = "image/jpeg";
            Byte[] imageData = this._imageInfoManager.GetTradeMarkImage(imageId);
            using (MemoryStream ms = new MemoryStream(imageData, 0, imageData.Length))
            {
                using (Image image = Image.FromStream(ms, true, true)) //this line throws
                {
                    image.Save(context.Response.OutputStream, ImageFormat.Jpeg);
                }
            }
        }
        throw new ArgumentException("Image could not be found.");
    }

请注意,imageData 字节数组不为空,内存流已正确填满。有什么想法吗?

更新:这是GetTradeMarkImage的代码...请注意,图像以image格式存储在 SQL Server 数据库中。

    public Byte[] GetTradeMarkImage(Int32 id)
    {
        object result = DB.ExecuteScalar(SqlConstants.SqlProcedures.Request_GetImageById, id);
        if (result != null)
        {
            using (MemoryStream ms = new MemoryStream())
            {
                BinaryFormatter bf = new BinaryFormatter();
                bf.Serialize(ms, result);
                return ms.ToArray();
            }                
        }
        return null;
    }

好的,现在你已经发布了GetTradeMarkImage代码,这几乎可以肯定是问题所在:

using (MemoryStream ms = new MemoryStream())
{
    BinaryFormatter bf = new BinaryFormatter();
    bf.Serialize(ms, result);
    return ms.ToArray();
}

为什么您希望BinaryFormatter的值是有效的图像流?目前尚不清楚数据库中的内容(BLOB?),也不清楚result的执行时类型(您应该通过调试找出),但您不应该在此处使用BinaryFormatter。我怀疑您只是想从数据库中获取原始数据,并将其放入字节数组中。

如果幸运的话,您也许可以先投result byte[]。(我不知道ExecuteScalar如何处理 blob,这显然不是"正常"的ExecuteScalar方法)。否则,您可能需要使用替代方法,打开DataReader并以这种方式获取值。

相关内容

  • 没有找到相关文章

最新更新