显示数据库中的图像

时间:2012-07-12 16:06:10

标签: jquery asp.net image downloading

我正在处理从数据库显示的此图像。我将字节数组从数据库转换为图像显示在我的图像标记上。

以下是我上传图片的方式:

$("#uploadBtn").live("click", function () {

$("#uploading")
    .ajaxStart(function () {
        $(this).show();
    })
    .ajaxComplete(function () {
        $(this).hide();
    });

$.ajaxFileUpload
    (
        {
            url: 'AjaxFileUploader.ashx?user=' + userId,
            secureuri: false,
            fileElementId: 'uploadControl',
            dataType: 'json',
            data: '{}',
            success: function (mydata) {

                alert("Image Successfully Uploaded");

                $('#imgdefaultphoto').attr('src', 'ImageRetrieval.ashx?user=' + userId); //referencing the ImageRetrieval handler

                hideUploadMask();
            },
            error: function () {

            }
        }
    )
  });

我有一个例外:

 Argument exception Parameter is not valid. at the line with (*). 

ImageRetrieval.ashx

    public void ProcessRequest(HttpContext context)
    {
        string userid = context.Request.QueryString["user"];
        DBAccess dbacc = new DBAccess();
        DataTable dt = dbacc.getImage(userid);
        byte[] image = ((byte[])dt.Rows[0]["UserImage"]);
        System.Drawing.Image img = byteArrayToImage(image);

        MemoryStream stream = new MemoryStream();
        img.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
        img.Dispose();
        stream.Position = 0;
        byte[] data = new byte[stream.Length];
        stream.Read(data, 0, (int)stream.Length);
        stream.Dispose();
        context.Response.Clear();
        context.Response.ContentType = "image/jpeg";
        context.Response.BinaryWrite(data);
    }

    public Image byteArrayToImage(byte[] byteArrayIn)
    {
        MemoryStream ms = new MemoryStream(byteArrayIn);
        Image returnImage = Image.FromStream(ms);  // exception line (*)
        return returnImage;
    }

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

根据此处的文档:http://msdn.microsoft.com/en-us/library/93z9ee4x.aspx,如果提供的流为null(检查代码,它不会)或不包含有效图像,Image.FromStream将抛出Argument Exception 。我怀疑后者就是这种情况。

以下是我要尝试的内容:在您的代码中获取字节数组之后:

byte[] image = ((byte[])dt.Rows[0]["UserImage"]);

将图像数据写入本地文件并进行检查 - 我怀疑您会发现它不是图像。如果是这种情况,那么您的问题就变成了“为什么没有上传有效图像?”。