如何用itextsharp将aspx页面导出成pdf格式的文件


如何用itextsharp将aspx页面导出成pdf格式的文件

asp.net

ridong 12 years, 6 months ago
  1. iTextSharp 功能很强大,但是自带的转换HTML到PDF功能做的不是很好,你可以自己学学iTextSharp然后自己用iTextSharp实现你的页面转换为PDF,性能很快。
    1. iTextSharp除开自带的一些布局元素外,还支持自定义绘制,所以基本上能实现所有复杂的PDF导出。
    2. 给一个参考网站吧: iTextSharp使用教程
    3. 高级功能也有,下面代码是画一个带阴影的矩形框。
public override void CustomerDrawCell(iTextSharp.text.pdf.PdfPCell cell, iTextSharp.text.Rectangle position, iTextSharp.text.pdf.PdfContentByte cb)
    {
        cb.SaveState();

        float x = position.Left;
        float y = position.Bottom + shadowW;
        float w = position.Width - shadowW;
        float h = position.Height - shadowW;

        cb.SetColorStroke(BaseColor.BLACK);
        cb.SetLineWidth(0.2f);

        cb.Rectangle(x, y, w, h);
        cb.Stroke();

        cb.SetColorFill(BaseColor.BLACK);
        cb.Rectangle(x + shadowW, y - shadowW, w, shadowW);
        cb.Rectangle(x + w, y, shadowW, h - shadowW);
        cb.Fill();

        cb.RestoreState();
    }
彷徨中的路人 answered 12 years, 6 months ago

Your Answer