彩票走势图

GdPicture.NET使用教程:在PDF中添加文本

原创|其它|编辑:郝浩|2012-12-17 16:33:37.000|阅读 317 次

概述:GdPicture.NET不仅能很好的完成扫描任务,还能进行一些列的处理,比如导出为PDF格式,并添加水印、数字化签名、合并PDF文件等等,本文将给出在PDF文件中添加文本的示例。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

作为图形处理控件,GdPicture.NET不仅能良好的完成图像扫描任务,并在扫描之后的图像处理上有着特定的优势,比如将扫描之后的图像转换为PDF格式,并做一系列的处理,比如添加水印、数字化签名、合并PDF文件等等,在这篇GdPicture.NET的教程中,我们将以在PDF文件中添加文本为例,继续探讨GdPicture.NET的强大之处。

》》》下载GdPicture.NET最新试用版

代码示例如下:

   Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
      Dim oGdPicturePDF As New GdPicturePDF

      oGdPicturePDF.SetLicenseNumber("XXX") 'Replace XXX by a valid demo or commercial key

      If oGdPicturePDF.LoadFromFile("c:\test.pdf", True) = GdPictureStatus.OK Then
         oGdPicturePDF.SelectPage(1) 'Selecting first page
         Dim font_res_name As String = oGdPicturePDF.AddTrueTypeFont("Arial", False, False, False)
         oGdPicturePDF.SetTextMode(PdfTextMode.PdfTextModeFill)
         oGdPicturePDF.SetTextSize(30)
         oGdPicturePDF.SetFillColor(255, 0, 0, 0) 'Using Cyan colour
         oGdPicturePDF.SetOrigin(PdfOrigin.PdfOriginTopLeft)
         oGdPicturePDF.SetMeasurementUnit(PdfMeasurementUnit.PdfMeasurementUnitCentimeter)
         oGdPicturePDF.DrawText(font_res_name, 1, 1, "Hello World!")
         oGdPicturePDF.SaveToFileInc("c:\test.pdf")
         oGdPicturePDF.CloseDocument()
         MsgBox("Done")
      End If
   End Sub

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP