使用pdfstamper将链接添加到现有pdf文件

时间:2018-09-03 15:17:52

标签: c# itext

我需要添加一个链接以通过pdfstamper来存在pdf加载,有很多解决方案,但没有一个可行。下一个代码不起作用

                Chunk chunk = new Chunk("The Best iText Questions on StackOverflow", Fuentelink);
                chunk.SetAnchor("http://pages.itextpdf.com/ebook-stackoverflow-questions.html");
                Phrase p = new Phrase("Download ");
                p.Add(chunk);
                p.Add(" and discover more than 200 questions and answers.");
                ColumnText ct1 = new ColumnText(cb);
                ct1.SetSimpleColumn(36, 700, 559, 750);
                ct1.AddText(p);
                ct1.Go();

0 个答案:

没有答案