zoukankan      html  css  js  c++  java
  • iTextSharp中中文显示实例

          //字体设定,c:\windows\fonts\kaiu.ttf,中文楷体
                BaseFont bfchinese = BaseFont.CreateFont(@"c:\windows\fonts\kaiu.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
                Font ChFont = new Font(bfchinese, 12);
                Font ChFont_blue = new Font(bfchinese, 40, Font.NORMAL, new BaseColor(51, 0, 153));
                Font ChFont_msg = new Font(bfchinese, 12, Font.ITALIC, BaseColor.RED);

      
                string filename =HttpRuntime.AppDomainAppPath+"pdf/"+DateTime.Now.ToString("yyyyMMddHHmmss") + ".pdf";
                Document document = new Document(PageSize.A4.Rotate());
                PdfWriter pdfWriter = PdfWriter.GetInstance(document, new FileStream(filename, FileMode.Create));
                //加密
                //pdfWriter.SetEncryption(PdfWriter.STRENGTH128BITS, "1234", "1244", PdfWriter.ALLOW_COPY | PdfWriter.AllowPrinting);
                document.Open();
                document.AddAuthor("zero");
                document.Add(new Paragraph("放大是否飒飒的",ChFont_blue));//调用重载函数 public Paragraph(string str, Font font);将字体传进去
                Image img = Image.GetInstance(HttpRuntime.AppDomainAppPath + "img/1.jpg");
                document.Add(img);
                //Header footer = new Header();
                document.AddHeader("footer", "this is footer");
                //pdfWriter.Dispose();
                //pdfWriter.Close();
                document.Dispose();
                document.Close();
                context.Response.Write(filename);

  • 相关阅读:
    PHP通用函数
    Discuz 取各排行榜数据
    htaccess 增加静态文件缓存和压缩
    一个域名解析不同访问方法
    TP5:隐藏inde.php文件
    vscode:解决操作git总让输入用户名及密码问题
    vscode:配置git
    cmd:相关命令和笔记
    PHP:通过MVC,实现第三方登录(百度)
    Linux:301重定向 —— 将不带www的重定向到带www的
  • 原文地址:https://www.cnblogs.com/beyond1983/p/2845829.html
Copyright © 2011-2022 走看看