отвечу сам себе
Код | Document document = new Document(PageSize.A4, 50, 50, 50, 50); PdfWriter writer = PdfWriter.GetInstance(document, new FileStream("test2.pdf", FileMode.Create)); writer.SetPdfVersion(PdfWriter.PDF_VERSION_1_5); document.Open(); PdfContentByte cb = writer.DirectContent; //cb.SetColorStroke(iTextSharp.text.Color.RED); //cb.Rectangle(150, 500, 450, 800); cb.Stroke(); //document.Add(new Paragraph("Images")); PdfFileSpecification fs = PdfFileSpecification.FileEmbedded(writer, "opening_animation.swf", "opening_animation.swf", null); PdfAnnotation annot = PdfAnnotation.CreateScreen(writer, new iTextSharp.text.Rectangle(150f, 500f, 450f, 800f), "opening_animation.swf", fs, "application/x-shockwave-flash", true); writer.AddAnnotation(annot); document.Close();
|
|