Answers
-
iTextSharp 功能很强大,但是自带的转换HTML到PDF功能做的不是很好,你可以自己学学iTextSharp然后自己用iTextSharp实现你的页面转换为PDF,性能很快。
- iTextSharp除开自带的一些布局元素外,还支持自定义绘制,所以基本上能实现所有复杂的PDF导出。
- 给一个参考网站吧: iTextSharp使用教程
- 高级功能也有,下面代码是画一个带阴影的矩形框。
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