1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
| using iTextSharp.text; using iTextSharp.text.pdf; using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms;
namespace GDZLCHECK.Utils { class PdfUtils { private static PdfUtils instance; public static PdfUtils GetInstance() { if (instance == null) { instance = new PdfUtils(); } return instance; }
private static Document doc; private static BaseFont bf = BaseFont.CreateFont(@"C://Windows/Fonts/simsun.ttc,0", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); //四种字体 private static Font fontBig = new Font(bf, 20, Font.BOLD); private static Font fontMiddle = new Font(bf, 15, Font.BOLD); private static Font fontSmall = new Font(bf, 13, Font.BOLD); private static Font fontSmall1 = new Font(bf, 13, Font.BOLD); private static Font fontSmallNoBold = new Font(bf, 13); private static float IndentationLeft = 50;//距左边距 //如果要传参数进来,可自定义 public static void GeneratePDF(DataTable tableSource, string pac, bool isPassed,string managerName,string contactNum,string unitName,string outputFilePath = "", int type = 1, string watermarkPicPath = "") { doc = new Document(PageSize.A4); doc.AddAuthor("XXXXXX"); doc.AddCreationDate(); doc.AddHeader("isPass", isPassed.ToString()); try { //MemoryStream ms2 = new MemoryStream(); string fileName = string.Format("数据_{0}.pdf", DateTime.Now.ToString("yyyyMMddHHmmss")); string filePath = string.Format("{0}/Resource/{1}", AppDomain.CurrentDomain.BaseDirectory, fileName); FileStream fs = new FileStream(filePath, FileMode.Create);//创建临时文件,到时生成好后删除 PdfWriter writer = PdfWriter.GetInstance(doc, fs); writer.CloseStream = false;//把doc内容写入流中 doc.Open(); //添加封面 //添加质检标志 string picPath = string.Format("{0}/Resource/{1}", AppDomain.CurrentDomain.BaseDirectory, "mark.png"); Image img = Image.GetInstance(new Uri(picPath)); float PageHeight = PageSize.A4.Height/7; double percentHeight = Math.Round((PageHeight / img.Height), 2);
float PageWidth = PageSize.A4.Width/2; double percentWidth = Math.Round((PageWidth / img.Width), 2); double percent = percentHeight > percentWidth ? percentWidth : percentHeight; img.ScalePercent((float)percent * 100); doc.Add(img); //每次在添加文本内容之前可以先设置字体 HeaderAndFooterEvent.SetFont(BaseColor.BLACK, "宋体", 36, Font.BOLD); //添加一个空段落来占位,五个参数分别为:内容,对齐方式(1为居中,0为居左,2为居右),段后空行数,段前空行数,行间距 //doc.Add(HeaderAndFooterEvent.AddParagraph(" ", 1, 100, 0, 1.5f));
//这个方法为上一个方法的重载,三个参数分别为:内容,对齐方式,行间距 doc.Add(HeaderAndFooterEvent.AddParagraph("检 验 报 告", 1, 2.41f)); HeaderAndFooterEvent.SetFont(BaseColor.BLACK, "宋体", 28, Font.BOLD); doc.Add(HeaderAndFooterEvent.AddParagraph("TEST REPORT", 1, 1.5f)); doc.Add(HeaderAndFooterEvent.AddParagraph(" ", 1, 50, 0, 1.5f)); HeaderAndFooterEvent.SetFont(BaseColor.BLACK, "宋体", 28, Font.BOLD);//空行 string projectName="项目名称"; //检测信息 bool isChangeRow = false;//对于项目名称过长需要换行截断 string anotherStr = ""; if (projectName.Length > 19) { isChangeRow = true; anotherStr = projectName.Substring(19, projectName.Length - 19); } if (isChangeRow) { AddPartnerContent("项目名称 :", projectName.Substring(0, 19), 38, 0);//添加项目名称 AddPartnerContent(" ", anotherStr, 38, 0);//添加项目名称
} else { AddPartnerContent("项目名称 :", projectName, 38, 0);//添加项目名称 }
AddPartnerContent("项目负责人:", managerName, 38, 0);//添加项目负责人 AddPartnerContent("联系电话 :", contactNum, 38, 1);//添加联系电话 AddPartnerContent("承担单位 :", unitName, 38, 0);//添加承担单位 AddPartnerContent("检测日期 :", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), 38, 1);//添加项目名称 //检查结果详情 doc.NewPage(); //实现页眉页脚 writer.PageEvent = new HeaderAndFooterEvent(); HeaderAndFooterEvent.PAGE_NUMBER = true;//实现页眉跟页脚 HeaderAndFooterEvent.tpl = writer.DirectContent.CreateTemplate(500, 500); //定义模板
HeaderAndFooterEvent.HeaderLeft = "耕地质量地球化学调查评价"; HeaderAndFooterEvent.HeaderRight = "成果检查"; HeaderAndFooterEvent.FooterLeft = ""; HeaderAndFooterEvent.FooterRight = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "(UTC)"; //核心操作 CreateLine();//生成一条下横线 CreateEmptyRow(1);//生成一行空行 HeaderAndFooterEvent.SetFont(BaseColor.BLACK, "宋体", 15, Font.BOLD); doc.Add(HeaderAndFooterEvent.AddParagraph("耕地质量地球化学调查评价成果检查报告", 1, 1.5f)); //AddHeaderTitleContent("汇交数据检查报告");//添加表头 CreateEmptyRow(1);//生成一行空行 //AddPartnerContent("生产单位", pac, 30);//添加合作单位 //AddPartnerContent("检查单位","WHU",25);//添加合作单位 //AddPageNumberContent(1,1);//添加页码 HeaderAndFooterEvent.SetFont(BaseColor.BLACK, "宋体1", 12); doc.Add(HeaderAndFooterEvent.AddParagraph("项目名称: XXXXXX", 0, 1.5f)); doc.Add(HeaderAndFooterEvent.AddParagraph("项目负责人:"+managerName+" ", 0, 1.5f)); doc.Add(HeaderAndFooterEvent.AddParagraph("联系电话:"+contactNum+" ", 0, 1.5f)); doc.Add(HeaderAndFooterEvent.AddParagraph("承担单位:" + unitName + " ", 0, 1.5f)); doc.Add(HeaderAndFooterEvent.AddParagraph("检测日期: " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), 0, 1.5f)); CreateEmptyRow(1);//生成一行空行
#region 生成表格数据 PdfPTable table = new PdfPTable(6);//5列的table //添加表格列头 table.WidthPercentage = 100; table.SetTotalWidth(new float[] { 70, 150,80, 150, 80, 120 }); table.AddCell(GetPdfCell("序号", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("检查对象", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("检查类型", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("检查内容", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("检查结果", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("备注", fontSmallNoBold, Element.ALIGN_CENTER));
int emptyRow = 20;//如果table的行数小于20行,那么剩余部分显示空白行 if (tableSource.Rows.Count > 0) { emptyRow = emptyRow - tableSource.Rows.Count;//如果为负数,说明不需要生成空白行 for (int i = 0; i < tableSource.Rows.Count; i++) { DataRow row = tableSource.Rows[i]; table.AddCell(GetPdfCell((i + 1).ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell(row["Object"].ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell(row["Type"].ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell(row["Content"].ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell(row["Result"].ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell(row["Info"].ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); } } if (emptyRow > 0)//说明数据源不足20行 { for (int i = 0; i < emptyRow; i++) { table.AddCell(GetPdfCell(((20 - emptyRow) + i + 1).ToString(), fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("", fontSmallNoBold, Element.ALIGN_CENTER)); table.AddCell(GetPdfCell("", fontSmallNoBold, Element.ALIGN_CENTER)); } } doc.Add(table); #endregion
#region 添加水印 string waterMarkName = "检查:"+(isPassed?"通过":"未通过"); string waterMarkAddr = pac; #endregion
doc.Close(); fs.Close(); string outputFileName = string.Format("检查报告_{0}.pdf", DateTime.Now.ToString("yyyyMMddHHmmss")); outputFilePath = string.Format("{0}/{1}", outputFilePath, outputFileName); if (outputFilePath == null || outputFilePath == "") { outputFilePath = string.Format("{0}/Resource/{1}", AppDomain.CurrentDomain.BaseDirectory, outputFileName); } switch (type) { case 1: //目前使用并在其中设置了只读 setWatermark(filePath,outputFilePath,waterMarkName,waterMarkAddr);//先生成水印,再删除临时文件 break; case 2: waterMarkName = string.Format("汇交检查:{0} 区域:{1} ", "通过", waterMarkAddr); setWatermark(filePath, outputFilePath, waterMarkName); break; case 3: setPicWatermark(filePath, outputFilePath, watermarkPicPath); break;
} //先生成水印,再删除临时文件 if (File.Exists(filePath))//判断临时文件是否存在,如果存在则删除 { File.Delete(filePath); GC.Collect();//回收垃圾 } //设置只读 //pdfreadonly(outputFilePath); MessageBox.Show("保存检查结果成功");
} catch (DocumentException ex) { throw new Exception(ex.Message); } } #region 生成一条横线 private static void CreateLine() { PdfPTable table = new PdfPTable(1);//一个单元格的 table.WidthPercentage = 100; PdfPCell cell = new PdfPCell(); cell.BorderWidthBottom = 0.5f; table.AddCell(cell); doc.Add(table); } #endregion
#region 生成N行空白行 private static void CreateEmptyRow(int emptyRowNum) { for (int i = 0; i < emptyRowNum; i++) { doc.Add(new Paragraph(" ")); } } #endregion
#region 生成标题 private static void AddHeaderTitleContent(string content) { Paragraph p = new Paragraph(content, fontMiddle); p.IndentationLeft = IndentationLeft;//距离左边距 doc.Add(p); } #endregion
#region 生成带下划线的内容 private static void AddPartnerContent(string stationName, string stationValue, int maxlength,int type) { fontSmall.SetStyle(Font.UNDERLINE);//文字下划线 Paragraph content = new Paragraph(); content.IndentationLeft = 100; Chunk chunkName = new Chunk(stationName, fontSmall1); Chunk chunkText = new Chunk(GetEmptyString(maxlength, stationValue,type), fontSmall); content.Add(0, chunkName); content.Add(1, chunkText); content.SpacingAfter = 2; content.SpacingBefore = 2; content.MultipliedLeading = 1.5f; content.Alignment = 0; doc.Add(content); } //居中显示内容 private static string GetEmptyString(int maxlength, string text,int type) { int padding =0; if (type == 0) { padding = (maxlength - text.Length* 2) ; } else { padding = (maxlength - text.Length); } string empty = string.Empty; for (int i = 0; i < padding; i++) { empty += " "; } return string.Format("{1}{0}", empty, text); } #endregion
#region 生成页码 private static void AddPageNumberContent(int total,int currentPage) { var content = new Paragraph("共 "+total+" 页 第"+currentPage+" 页", fontSmall); content.IndentationRight = IndentationLeft + 20; content.Alignment = 2; //居左 doc.Add(content); } #endregion
#region 生成单元格 private static PdfPCell GetPdfCell(string content, Font font, int horizontalAlignment) { PdfPCell cell = new PdfPCell(new Paragraph(content, font)); cell.HorizontalAlignment = horizontalAlignment;//水平位置 cell.VerticalAlignment = Element.ALIGN_CENTER;//垂直居中 cell.MinimumHeight = 20;//单元格的最小高度 return cell; } #endregion
#region 生成水印 public static bool CreatePDFByPic(string picPdfPath, string picPath) { //新建一个文档 Document doc = new Document(); try { //建立一个书写器(Writer)与document对象关联 PdfWriter.GetInstance(doc, new FileStream(picPdfPath, FileMode.Create, FileAccess.ReadWrite)); //打开一个文档 doc.Open(); //向文档中添加内容 Image img = Image.GetInstance(picPath); //img.SetAbsolutePosition(); doc.Add(img); return true; } catch (Exception ex) { return false; throw ex; } finally { if (doc != null) { doc.Close(); } }
}
/// <summary> /// 加图片水印 /// </summary> /// <param name="inputfilepath"></param> /// <param name="outputfilepath"></param> /// <param name="ModelPicName"></param> /// <param name="top"></param> /// <param name="left"></param> /// <returns></returns> public static bool setPicWatermark(string inputfilepath, string outputfilepath, string ModelPicName) { //throw new NotImplementedException(); PdfReader pdfReader = null; PdfStamper pdfStamper = null; try { pdfReader = new PdfReader(inputfilepath); int numberOfPages = pdfReader.NumberOfPages;
iTextSharp.text.Rectangle psize = pdfReader.GetPageSize(1);
float width = psize.Width;
float height = psize.Height;
pdfStamper = new PdfStamper(pdfReader, new FileStream(outputfilepath, FileMode.Create));
PdfContentByte waterMarkContent;
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(ModelPicName); float left = width / 2 - image.Width; float top = 10; image.GrayFill = 50;//透明度,灰色填充 //image.Rotation//旋转 //image.RotationDegrees//旋转角度 //水印的位置 if (left < 0) { left = width / 2 - image.Width; }
//image.SetAbsolutePosition(left, (height - image.Height) - top); image.SetAbsolutePosition(left, (height / 2 - image.Height) - top);
//每一页加水印,也可以设置某一页加水印 for (int i = 1; i <= numberOfPages; i++) { //waterMarkContent = pdfStamper.GetUnderContent(i);//内容下层加水印 waterMarkContent = pdfStamper.GetOverContent(i);//内容上层加水印
waterMarkContent.AddImage(image); } //strMsg = "success"; return true; } catch (Exception ex) { throw ex;
} finally {
if (pdfStamper != null) pdfStamper.Close();
if (pdfReader != null) pdfReader.Close(); } } /// <summary> /// 添加普通偏转角度文字水印 /// </summary> /// <param name="inputfilepath"></param> /// <param name="outputfilepath"></param> /// <param name="waterMarkName"></param> /// <param name="permission"></param> public static void setWatermark(string inputfilepath, string outputfilepath, string waterMarkName) { PdfReader pdfReader = null; PdfStamper pdfStamper = null; try { pdfReader = new PdfReader(inputfilepath); pdfStamper = new PdfStamper(pdfReader, new FileStream(outputfilepath, FileMode.Create)); int total = pdfReader.NumberOfPages + 1; iTextSharp.text.Rectangle psize = pdfReader.GetPageSize(1); float width = psize.Width; float height = psize.Height; PdfContentByte content; BaseFont font = BaseFont.CreateFont(@"C:\WINDOWS\Fonts\SIMFANG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); PdfGState gs = new PdfGState(); for (int i = 1; i < total; i++) { content = pdfStamper.GetOverContent(i);//在内容上方加水印 //content = pdfStamper.GetUnderContent(i);//在内容下方加水印 //透明度 gs.FillOpacity = 0.3f; content.SetGState(gs); //content.SetGrayFill(0.3f); //开始写入文本 content.BeginText(); content.SetColorFill(BaseColor.LIGHT_GRAY); content.SetFontAndSize(font, 40); content.SetTextMatrix(0, 0); content.ShowTextAligned(Element.ALIGN_CENTER, waterMarkName, width / 2 - 50, height / 2 - 50, 55); //content.SetColorFill(BaseColor.BLACK); //content.SetFontAndSize(font, 8); //content.ShowTextAligned(Element.ALIGN_CENTER, waterMarkName, 0, 0, 0); content.EndText(); } } catch (Exception ex) { throw ex; } finally {
if (pdfStamper != null) pdfStamper.Close();
if (pdfReader != null) pdfReader.Close(); } } /// <summary> /// 添加倾斜水印 /// </summary> /// <param name="inputfilepath"></param> /// <param name="outputfilepath"></param> /// <param name="waterMarkName"></param> /// <param name="userPassWord"></param> /// <param name="ownerPassWord"></param> /// <param name="permission"></param> public static void setWatermark(string inputfilepath, string outputfilepath, string waterMarkName, string userPassWord, string ownerPassWord, int permission) { PdfReader pdfReader = null; PdfStamper pdfStamper = null; try { pdfReader = new PdfReader(inputfilepath); pdfStamper = new PdfStamper(pdfReader, new FileStream(outputfilepath, FileMode.Create)); // 设置密码 //pdfStamper.SetEncryption(false,userPassWord, ownerPassWord, permission);
int total = pdfReader.NumberOfPages + 1; PdfContentByte content; BaseFont font = BaseFont.CreateFont(@"C:\WINDOWS\Fonts\SIMFANG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); PdfGState gs = new PdfGState(); gs.FillOpacity = 0.2f;//透明度
int j = waterMarkName.Length; char c; int rise = 0; for (int i = 1; i < total; i++) { rise = 500; content = pdfStamper.GetOverContent(i);//在内容上方加水印 //content = pdfStamper.GetUnderContent(i);//在内容下方加水印
content.BeginText(); content.SetColorFill(BaseColor.DARK_GRAY); content.SetFontAndSize(font, 50); // 设置水印文字字体倾斜 开始 if (j >= 15) { content.SetTextMatrix(200, 120); for (int k = 0; k < j; k++) { content.SetTextRise(rise); c = waterMarkName[k]; content.ShowText(c + ""); rise -= 20; } } else { content.SetTextMatrix(180, 100); for (int k = 0; k < j; k++) { content.SetTextRise(rise); c = waterMarkName[k]; content.ShowText(c + ""); rise -= 18; } } // 字体设置结束 content.EndText(); // 画一个圆 //content.Ellipse(250, 450, 350, 550); //content.SetLineWidth(1f); //content.Stroke(); }
} catch (Exception ex) { throw ex; } finally {
if (pdfStamper != null) pdfStamper.Close();
if (pdfReader != null) pdfReader.Close(); } } /// <summary> /// /// </summary> /// <param name="filePath"></param> /// <param name="outputfilepath"></param> /// <param name="waterMarkName"></param> /// <param name="waterMarkAddr"></param> public static void setWatermark(string filePath, string outputfilepath, string waterMarkName, string waterMarkAddr) { PdfReader pdfReader = null; PdfStamper pdfStamper = null; try { pdfReader = new PdfReader(filePath); pdfStamper = new PdfStamper(pdfReader, new FileStream(outputfilepath, FileMode.Create)); //设置权限为只读 pdfStamper.SetEncryption(PdfWriter.STRENGTH128BITS, null, null, PdfWriter.ALLOW_SCREENREADERS | PdfWriter.AllowPrinting); int total = pdfReader.NumberOfPages+1;//获取PDF的总页数 iTextSharp.text.Rectangle psize = pdfReader.GetPageSize(1);//获取第一页 float width = psize.Width;//PDF页面的宽度,用于计算水印倾斜 float height = psize.Height; PdfContentByte waterContent; BaseFont basefont = BaseFont.CreateFont(@"C:\WINDOWS\Fonts\SIMFANG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); PdfGState gs = new PdfGState(); //i从2开始,因为不给封面添加水印 for (int i = 2; i < total; i++) { waterContent = pdfStamper.GetOverContent(i);//在内容上方加水印 //透明度 waterContent.SetGState(gs); //开始写入文本 waterContent.BeginText(); waterContent.SetColorFill(BaseColor.RED); waterContent.SetFontAndSize(basefont, 30); waterContent.SetTextMatrix(0, 0); if (waterMarkAddr == null || waterMarkAddr == "") { waterContent.ShowTextAligned(Element.ALIGN_CENTER, waterMarkName, width / 2, height / 2, 55); } else { waterContent.ShowTextAligned(Element.ALIGN_CENTER, waterMarkName, width / 2, height / 2 + 100, 55); waterContent.ShowTextAligned(Element.ALIGN_CENTER, waterMarkAddr, width / 2, height / 2 - 100, 55); } waterContent.EndText(); } } catch (Exception e) { Console.WriteLine(e.ToString()); } finally { if (pdfStamper != null) pdfStamper.Close();
if (pdfReader != null) pdfReader.Close(); } } #endregion #region 只读 public static void pdfreadonly(string pdfname) {
string pdfFile = pdfname;// "d:\\sample.pdf";
//把文件读入内存可立即释放文件句柄,方便信息覆盖原文件
PdfReader reader = new PdfReader(File.ReadAllBytes(pdfFile));
//获取到本文件的 MetaData 信息
Dictionary<string, string> info = reader.Info;
reader.Close();
//覆盖掉原 PDF 文件中
PdfStamper stamper = new PdfStamper(reader, new FileStream(pdfFile, FileMode.Create, FileAccess.Write));
stamper.MoreInfo = info;
stamper.SetEncryption(PdfWriter.STRENGTH40BITS, null, null, PdfWriter.AllowScreenReaders);
stamper.Close();
} #endregion } }
|