好的,我一直在努力工作,并做了很多搜索。从数据库中提取图像时,我无法显示图像。如果我尝试手动转到处理程序链接,我会收到一条消息“无法显示图像[图像],因为它包含错误”。我之前在数据库中有一些旧图像,它首先正确显示了这些图像。但现在,如果我更新图像,它会在尝试查看它时给我这个错误。
上传代码。
if (fileuploadImage.HasFile)
{
if (IsValidImage(fileuploadImage))
{
int length = fileuploadImage.PostedFile.ContentLength;
byte[] imgbyte = new byte[length];
HttpPostedFile img = fileuploadImage.PostedFile;
img.InputStream.Read(imgbyte, 0, length);
if (mainImage == null)
{
ProfileImage image = new ProfileImage();
image.ImageName = txtImageName.Text;
image.ImageData = imgbyte;
image.ImageType = img.ContentType;
image.MainImage = true;
image.PersonID = personID;
if (image.CreateImage() <= 0)
{
SetError("There was an error uploading this image.");
}
}
else
{
mainImage.ImageName = txtImageName.Text;
mainImage.ImageType = img.ContentType;
mainImage.ImageData = imgbyte;
mainImage.MainImage = true;
mainImage.PersonID = personID;
if (!mainImage.UpdateImage())
{
SetError("There was an error uploading this image.");
}
}
}
else
{
SetError("Not a valid image type.");
}
这是我的图片处理程序:
public class ImageHandler : IHttpHandler
{
public bool IsReusable
{
get
{
return false;
}
}
public void ProcessRequest(HttpContext context)
{
int imageid = Parser.GetInt(context.Request.QueryString["ImID"]);
ProfileImage image = new ProfileImage(Parser.GetInt(imageid));
context.Response.ContentType = image.ImageType;
context.Response.Clear();
context.Response.BinaryWrite(image.ImageData);
context.Response.End();
}
这就是我称之为“〜/ ImageHandler.ashx?ImID =”+ Parser.GetString(image.ImageID)
我在sql server中使用数据类型Image来存储它。
编辑:
我还发现,如果我尝试捕捉context.Response.end(),那就是错误地说“无法评估代码,因为本机框架......”
答案 0 :(得分:1)
我发现了我的问题。我正在检查实际文件的标题以确保它是有效的。不知何故,这会改变数据并使其变坏。