我必须在局部视图中显示PDF(在SQL Server表中存储为BLOB )。我对在table.The图像中存储为BLOB的".jpeg“图像执行了相同的操作,但是,PDF是nt.我的控制器中有以下代码:
[Authorize]
public ActionResult Show3LeadImage(int id)
{
Byte[] imageData = null;
using (var scope = new PatientPersistenceScope())
{
searchRequest leadRequest = new searchRequest();
leadRequest.CaseNumber = id;
var mrx12LeadBitmap = _mrxSearchService.Get12Lead(leadRequest);
imageData = mrx12LeadBitmap.Data12Leads[0].mrx3Lead;
scope.Done();
}
return File(imageData,"image/png");//I have tried "FileContentResult,but it didnt work
}
分部视图(.ascx)中的代码如下所示:
<object data='<%= Url.Action("Show3LeadImage", "CareRecord", new { id = Model.CareRecord.CaseNumber}) %>' type="application/pdf" style="width: 721px; height: 800px;" ></object>
我没有访问物理file....the BLOB的权限,这是我的全部。
是否可以在局部视图中将PDF显示为图像?我遇到了很多文章,解释了如何在局部view.But中下载PDF,我不希望我的文件可下载。这个功能是可以实现的,还是我正在尝试做一些不可能的事情?
发布于 2013-12-11 01:44:38
将PDF转换为图像并不像PNG那样简单。您需要使用ImageMagick或ABCPdf (示例:Convert PDF to image with high resolution)等库对其进行转换
如果你想在超文本标记语言中嵌入PDF,有几种方法可以做到,例如Recommended way to embed PDF in HTML?
https://stackoverflow.com/questions/19107971
复制