我有以下代码生成pdf文件。现在我想在这个pdf文件上添加用户的数字签名。
我怎么能这样做?
我使用ABCPdf组件生成pdf文件。
Dim theDoc As Doc = New Doc()
theDoc.HtmlOptions.Timeout = 300000
theDoc.HtmlOptions.ImageQuality = 101
'total w=612 h=792
theDoc.Rect.Position(50, 70)
theDoc.Rect.Width = 532
theDoc.Rect.Height = 610
Dim theid As Integer = theDoc.AddImageUrl("http://google.com")
While theDoc.Chainable(theid)
theDoc.Page = theDoc.AddPage()
theid = theDoc.AddImageToChain(theid)
End While
theDoc.Save(System.Web.HttpContext.Current.Server.MapPath("/1.pdf"))
theDoc.Clear()