我将图像放入字节 []。我需要在 asp.net 中将它打开到 adobe 文件中。我使用以下代码:
byte[] bytes = contractimage.Value.Bytes;
if (bytes == null)
{
Response.Write("Not found.");
Response.End();
}
else
{
Response.AddHeader("content-disposition",
"attachment;filename=statement" + contractGuid.ToString() + ".pdf");
Response.ContentType = "application/pdf";
Response.OutputStream.Write(bytes, 0, bytes.Length);
Response.End();
}
但是此代码显示 adobe 无法显示此文件的错误,它可能已损坏。请建议