C#生成PDF文件流

时间:2022-02-01 05:04:46

本文实例为大家分享了C#生成PDF文件流的具体代码,供大家参考,具体内容如下

1、设置字体

?
1
2
3
4
5
static BaseFont FontBase = BaseFont.CreateFont("C:\WINDOWS\FONTS\STSONG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
    static iTextSharp.text.Font bodyFont = new iTextSharp.text.Font(FontBase, 12);
    static iTextSharp.text.Font titleFont = new iTextSharp.text.Font(FontBase, 18);
    static iTextSharp.text.Font paragraphFont = new iTextSharp.text.Font(FontBase, 15);
    static iTextSharp.text.Font linkFont = new iTextSharp.text.Font(FontBase, 12, Font.UNDERLINE, BaseColor.BLUE);

2.生成PDF文件流返回byte数组

  1. public byte[] DocCreate(System.Drawing.Image image, List<TreeNodes> list) 
  2.     { 
  3.       MemoryStream file = new MemoryStream(); 
  4.  
  5.       string fileName = string.Empty; 
  6.       Rectangle page = PageSize.A4; 
  7.       float y = page.Height; 
  8.       Document document = new Document(page, 15, 15, 30, 30); 
  9.       float docWidth = page.Width - 15 * 2; 
  10.       float docHeight = page.Height - document.BottomMargin - document.TopMargin; 
  11.       PdfWriter writer = PdfWriter.GetInstance(document, file); 
  12.       writer.CloseStream = false
  13.       writer.Open(); 
  14.       PdfContentByte cb = writer.DirectContent; 
  15.       document.Open(); 
  16.       //标题 
  17.       Paragraph title = new Paragraph(new Chunk("标题", titleFont)); 
  18.       title.Alignment = Element.ALIGN_CENTER; 
  19.       document.Add(title); 
  20.       //图片 
  21.       iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(image, ImageFormat.Png); 
  22.       float widthSzie = (page.Width - 30) / img.Width; 
  23.       if (widthSzie < 1) 
  24.       { 
  25.         img.ScalePercent(widthSzie * 100); 
  26.       } 
  27.       document.Add(img); 
  28.       //文献出处 
  29.       Paragraph p2 = new Paragraph(new Chunk("出处", paragraphFont)); 
  30.       p2.IndentationLeft = indentationLeft; 
  31.       document.Add(p2); 
  32.       InitData(list);//初始化业务数据 
  33.       CreateSteps(list, document, list.FirstOrDefault(it => it.PID == 0));//添加业务数据 
  34.       ////添加印章 
  35.       //iTextSharp.text.Image whyz = iTextSharp.text.Image.GetInstance(whyzPath); 
  36.       //whyz.ScalePercent(50); 
  37.       //whyz.PaddingTop = 100; 
  38.       //whyz.Alignment = Element.ALIGN_RIGHT; 
  39.       //document.Add(whyz); 
  40.       //添加日期 
  41.       Paragraph createtime = new Paragraph(new Chunk(DateTime.Now.ToLongDateString().ToString(), bodyFont)); 
  42.       createtime.Alignment = Element.ALIGN_RIGHT; 
  43.       //createtime.SpacingBefore = -80; 
  44.       createtime.PaddingTop = 200; 
  45.  
  46.       document.Add(createtime); 
  47.  
  48.  
  49.       document.Close(); 
  50.       file.Position = 0; 
  51.       MemoryStream newfile = SetWaterMark(file, "水印内容", docWidth, docHeight);//添加水印,见另外一篇博客 
  52.       newfile.Position = 0;//重置流指针位置 
  53.       byte[] bytes = new byte[newfile.Length]; 
  54.       newfile.Read(bytes, 0, bytes.Length); 
  55.       return bytes; 
  56.     } 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。