您将如何以编程方式在SWF中嵌入SWF?
发布时间:2020-12-15 07:29:59 所属栏目:百科 来源:网络整理
导读:是否有可能以编程方式将SWF嵌入到C#应用程序的PDF中? 解决方法 您可以使用iText库的c#端口.它被称为iTextSharp. http://itextsharp.com/ 代码可能如下所示: // create an output file stream which will be used to capture the generated file string out
是否有可能以编程方式将SWF嵌入到C#应用程序的PDF中?
解决方法
您可以使用iText库的c#端口.它被称为iTextSharp.
http://itextsharp.com/ 代码可能如下所示: // create an output file stream which will be used to capture the generated file string outputFileName = "output.pdf"; FileStream outputFile = new FileStream(outputFileName,FileMode.Create); // open the original pdf file as a PdfReader PdfReader reader = new PdfReader("inputfile.pdf"); // open the output pdf file as a PdfStamper PdfStamper stamper = new PdfStamper(reader,outputFile); // inserts a blank page at the start of the document stamper.InsertPage(1,PageSize.A4); // add the flash file to the output document as an annotation PdfFileSpecification fs = PdfFileSpecification.FileEmbedded(stamper.Writer,flashFileTextBox.Text,null); PdfAnnotation flashInsert = PdfAnnotation.CreateScreen(stamper.Writer,new Rectangle(50f,791f,545f,420f),"Flash Insert",fs,"application/x-shockwave-flash",true); stamper.AddAnnotation(flashInsert,1); stamper.Close(); reader.Close(); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |