我使用以下代码在mvc中使用带有razorpdf生成器的itext生成pdf
@model myModel.Models.Examform
@{
Layout = null;
}
<itext creationdate="@DateTime.Now.ToString()" producer="RazorPDF">
Hello
</text>
此代码工作正常。我想为生成的pdf添加水印。我知道如何添加图像。我需要一个在后台显示的水印。
答案 0 :(得分:1)
这几乎是完全相同的问题
ItextSharp - RazorPdf put image on Pdf
所以使用答案应该适合你:
<image url="@Context.Server.MapPath("~/Images/sampleImage.png")" />
编辑:要覆盖图片上的文字,您需要修改CSS和HTML。
How to position text over an image in css
Add "Watermark" effect with CSS?
http://www.the-art-of-web.com/css/textoverimage/
你可能需要将CSS内联。
答案 1 :(得分:1)
这就是我所做的。代码进入控制器。
[HttpPost]
public FileStreamResult Certificate(MyModel model)
{
Stream fileStream = GeneratePDF(model);
HttpContext.Response.AddHeader("content-disposition", "inline; filename=Certificate.pdf");
var fileStreamResult = new FileStreamResult(fileStream, "application/pdf");
return fileStreamResult;
}
public Stream GeneratePDF(HomeViewModel model)
{
var rect = new Rectangle(288f, 144f);
var doc = new Document(rect, 0, 0, 0, 0);
BaseFont bfArialNarrow = BaseFont.CreateFont(Server.MapPath("../Content/fonts/ARIALN.ttf"), BaseFont.CP1252, BaseFont.EMBEDDED);
//Full Background Image (Includes watermark)
Image fullBackground = null;
fullBackground = Image.GetInstance(Server.MapPath("../Content/images/Certificate/Cert1.jpg"));
doc.SetPageSize(PageSize.LETTER.Rotate());
MemoryStream memoryStream = new MemoryStream();
PdfWriter pdfWriter = PdfWriter.GetInstance(doc, memoryStream);
doc.Open();
//Full Background Image
fullBackground.Alignment = Image.UNDERLYING | Image.ALIGN_CENTER | Image.ALIGN_MIDDLE;
doc.Add(fullBackground);
Font myFont = new Font(bfArialNarrow, 57);
var myParagraph = new Paragraph("Some text here.", myFont);
doc.Add(myParagraph);
pdfWriter.CloseStream = false;
doc.Close();
memoryStream.Position = 0;
return memoryStream;
}
答案 2 :(得分:1)
我认为通过标记是不可能的。
如果你看一下RazorPDF源代码中的PdfView.cs,它会在iTextsharpt中使用XmlParser或HtmlParser来渲染pdf。
https://github.com/RazorAnt/RazorPDF/blob/master/RazorPDF/PdfView.cs
这两个类中标记的支持是有限的。你只能做他们已经实施的事情。
另一种方法是使用iTextsharp通过代码创建pdf。