新博客地址:http://muker.net/django-xhtml2pdf.html这里仅仅讨论直接利用html生成pdf这种最常见也最简单的情况。1、要利用html生成带中文的pdf要指定中文字体即在要用的html中的style标签下要添加如下代码:@font-face { font-f...
分类:
Web程序 时间:
2015-05-28 16:06:16
阅读次数:
287
使用iTextSharp 控件
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using iTextSharp.text;
using iTextSharp.text.pdf;
usin...