彩票走势图

Aspose.Pdf使用教程:为PDF文件添加swf注释

原创|使用教程|编辑:郝浩|2013-03-20 14:44:48.000|阅读 539 次

概述:Aspose.Pdf可以为PDF文件添加各种形式的注释,包括将swf文件作为注释添加进PDF文件中,这一操作可以通过简单的代码片段实现。

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

相关链接:

Aspose.Pdf可以为PDF文件添加各种形式的注释,包括将swf文件作为注释添加进PDF文件中,这一操作可以通过简单的代码片段实现。

》》》下载Aspose.Pdf试用版

下面是代码示例:

C#

//Open the PDF document
Document doc = new Document("d:/pdftest/input.pdf");
// get reference of the page to which you need to add the annotation
Page page = doc.Pages[1];
// create ScreenAnnotation object with .swf multimedia file as an argument
ScreenAnnotation annotation = 
   new ScreenAnnotation(page, new Aspose.Pdf.Rectangle(0, 400, 600, 700),
   @"E:\First_Application_with_Aspose.Pdf_for_.NET.swf");
// add the annotation to annotations collection of page
page.Annotations.Add(annotation);
// save the update PDF document with annotation
doc.Save("d:/pdftest/Pdf_Filesample_with_SWF.pdf");

VB.NET

'Open the PDF document
Dim doc As Document = New Document("d:/pdftest/input.pdf")
' get reference of the page to which you need to add the annotation
Dim page As Page = doc.Pages(1)
' create ScreenAnnotation object with .swf multimedia file as an argument
Dim annotation As ScreenAnnotation = 
    New ScreenAnnotation(page, New Aspose.Pdf.Rectangle(0, 400, 600, 700), 
   "E:\First_Application_with_Aspose.Pdf_for_.NET.swf")
' add the annotation to annotations collection of page
page.Annotations.Add(annotation)
' save the update PDF document with annotation
doc.Save("d:/pdftest/Pdf_Filesample_with_SWF.pdf")

标签:

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

文章转载自:慧都控件网

为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP