public ActionResult GeneratePdf(int id)
{
var labelRepository = new LabelRepository();
var label = labelRepository.GetLabel(id);
if (String.IsNullOrEmpty(label.PDFLocation))
{
var action = Url.Content("~/Label/ViewPdf/" + id); //doc
Doc theDoc = new Doc();
string filename = Guid.NewGuid().ToString();
string path = Server.MapPath("~/" + filename + ".pdf");
theDoc.AddImageUrl("action");
theDoc.Save(path);
theDoc.Clear();
label.PDFLocation = path;
labelRepository.Save();
return base.File(path, "application/pdf");
}
else
{
return base.File(label.PDFLocation, "application/pdf");
}
}
這不會添加我的圖像網址,所以我的PDF不會打開,所以我可以看到它。任何想法? -我的圖片不會添加C#
您使用什麼庫來生成PDF? – RQDQ 2011-02-26 18:44:49
你是什麼意思,它不會添加圖片網址? – msarchet 2011-02-26 18:46:18
我正在使用ABCPdf – Samjus 2011-02-26 18:46:43