为什么通过下列代码创建的水印 即使在代码中修改水印文本结果显示的时候还是第一次创建的水印 using (PdfReader reader = new PdfReader(filepath+ filetype_pdf)) { int pageCount = reader.NumberOfPages; // 添加水印 using (PdfStamper stamper = new PdfStamper(reader, new FileStream("temp.pdf", FileMode.Create))) { for (int i = 1; i <= pageCount; i++) { // 水印文本 //string watermarkText = "鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA"; // 水印字体 BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED); Font font = new Font("Black", 75, FontStyle.Bold); //Brush brush = new SolidBrush(Color.FromArgb(128, Color.LightGray)); // 水印位置 iTextSharp.text.Rectangle rect = reader.GetPageSize(i); float x = rect.Width / 2; float y = rect.Height / 2; // 添加水印 PdfContentByte over = stamper.GetOverContent(i); over.SaveState(); over.SetGState(new PdfGState() { FillOpacity = 0.5f, StrokeOpacity = 0.5f }); over.BeginText(); over.SetFontAndSize(bf, font.Size); over.SetColorFill(BaseColor.LIGHT_GRAY); over.ShowTextAligned(Element.ALIGN_CENTER, "鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA", x, y, 45); over.EndText(); over.RestoreState(); } stamper.Close(); pdfViewer1.Document = PdfiumViewer.PdfDocument.Load("temp.pdf"); } }
时间: 2023-12-14 07:39:57 浏览: 159
这是因为你在添加水印时创建了新的临时 PDF 文件,但在设置 pdfViewer1.Document 时,你却仍然使用原始的 PDF 文件(即 filepath+filetype_pdf)。因此,你需要将 pdfViewer1.Document 设置为新创建的临时文件 temp.pdf。在代码的最后添加以下代码即可:
```
pdfViewer1.Document = PdfiumViewer.PdfDocument.Load("temp.pdf");
```
相关问题
为什么通过下列代码创建的水印 即使在代码中修改水印文本结果显示的时候还是第一次创建的水印 using (PdfReader reader = new PdfReader(filepath+ filetype_pdf)) { int pageCount = reader.NumberOfPages; // 添加水印 using (PdfStamper stamper = new PdfStamper(reader, new FileStream("temp.pdf", FileMode.Create))) { for (int i = 1; i <= pageCount; i++) { // 水印文本 //string watermarkText = "鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA"; // 水印字体 BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED); Font font = new Font("Black", 75, FontStyle.Bold); //Brush brush = new SolidBrush(Color.FromArgb(128, Color.LightGray)); // 水印位置 iTextSharp.text.Rectangle rect = reader.GetPageSize(i); float x = rect.Width / 2; float y = rect.Height / 2; // 添加水印 PdfContentByte over = stamper.GetOverContent(i); over.SaveState(); over.SetGState(new PdfGState() { FillOpacity = 0.5f, StrokeOpacity = 0.5f }); over.BeginText(); over.SetFontAndSize(bf, font.Size); over.SetColorFill(BaseColor.LIGHT_GRAY); over.ShowTextAligned(Element.ALIGN_CENTER, watermark, x, y, 45); over.EndText(); over.RestoreState(); } stamper.Close(); pdfViewer1.Document = PdfiumViewer.PdfDocument.Load("temp.pdf"); }
这是因为你在创建水印时,使用了一个固定的文本变量 "watermark",而没有实时更新它。所以,无论你在代码中如何修改文本,都只会显示第一次创建的水印。
要解决这个问题,你需要在循环中动态地更新水印文本变量。例如,你可以将水印文本变量放在一个数组或列表中,并在循环中根据当前页数来获取对应的文本。示例代码如下:
```
string[] watermarkTexts = new string[] { "水印1", "水印2", "水印3" };
using (PdfStamper stamper = new PdfStamper(reader, new FileStream("temp.pdf", FileMode.Create)))
{
for (int i = 1; i <= pageCount; i++)
{
// 获取当前页码对应的水印文本
string watermarkText = watermarkTexts[i % watermarkTexts.Length];
// 其他水印代码...
}
}
```
这样,每次循环都会根据当前页数获取对应的水印文本,从而实现动态更新水印的效果。
为什么使用下列代码给pdf添加的水印 就算修改了watermarktext变量的文本 打开pdf文件后里边的水印还是第一次生成代码时的水印 using (PdfReader reader = new PdfReader(path)) { int pageCount = reader.NumberOfPages; // 添加水印 PdfStamper stamper = new PdfStamper(reader, new FileStream("temp.pdf", FileMode.Create)); for (int i = 1; i <= pageCount; i++) { // 水印文本 string watermarkText = "鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA"; // 水印字体 BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED); Font font = new Font("Black", 75, FontStyle.Bold); //Brush brush = new SolidBrush(Color.FromArgb(128, Color.LightGray)); // 水印位置 iTextSharp.text.Rectangle rect = reader.GetPageSize(i); float x = rect.Width / 2; float y = rect.Height / 2; // 添加水印 PdfContentByte over = stamper.GetOverContent(i); over.SaveState(); over.SetGState(new PdfGState() { FillOpacity = 0.5f, StrokeOpacity = 0.5f }); over.BeginText(); over.SetFontAndSize(bf, font.Size); over.SetColorFill(BaseColor.LIGHT_GRAY); over.ShowTextAligned(Element.ALIGN_CENTER, watermarkText, x, y, 45); over.EndText(); over.RestoreState(); } stamper.Close(); pdfViewer1.Document = PdfiumViewer.PdfDocument.Load("temp.pdf"); }
这是因为你每次都是将PDF文件读取到内存中,然后对内存中的文件进行水印处理,而不是直接对原始文件进行处理。因此,即使你修改了水印文本,生成的PDF文件也是基于原始文件的副本进行水印处理的。
如果你想在原始文件上添加水印并保存,可以直接对原始文件进行操作,而不是生成一个副本。你可以尝试以下代码:
```csharp
using (PdfReader reader = new PdfReader(path))
{
int pageCount = reader.NumberOfPages;
using (FileStream output = new FileStream("output.pdf", FileMode.Create, FileAccess.Write))
{
using (PdfStamper stamper = new PdfStamper(reader, output))
{
for (int i = 1; i <= pageCount; i++)
{
string watermarkText = "鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA 鲁达LUDA";
BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);
Font font = new Font("Black", 75, FontStyle.Bold);
iTextSharp.text.Rectangle rect = reader.GetPageSize(i);
float x = rect.Width / 2;
float y = rect.Height / 2;
PdfContentByte over = stamper.GetOverContent(i);
over.SaveState();
over.SetGState(new PdfGState() { FillOpacity = 0.5f, StrokeOpacity = 0.5f });
over.BeginText();
over.SetFontAndSize(bf, font.Size);
over.SetColorFill(BaseColor.LIGHT_GRAY);
over.ShowTextAligned(Element.ALIGN_CENTER, watermarkText, x, y, 45);
over.EndText();
over.RestoreState();
}
}
}
pdfViewer1.Document = PdfiumViewer.PdfDocument.Load("output.pdf");
}
```
这样,你每次修改水印文本后,生成的PDF文件都是直接基于原始文件进行水印处理的。
阅读全文