将文本项添加到带有Telerik DocumentProcessing库的现有PDF中

问题描述 投票:0回答:1

我想打开一个现有的PDF文档,并为其添加不同的注释。即书签和一些文本我正在使用Telerik文档处理库(dpl)v2019.3.1021.40

我是dpl的新手,但我相信RadFlowDocument是必经之路。我在创建RadFlowDocument时遇到了麻烦

         FlowProvider.PdfFormatProvider provider = new FlowProvider.PdfFormatProvider();
             using (Stream stream = File.OpenRead(sourceFile))
            {
   -->           RadFlowDocument flowDoc  = provider.Import(stream);


            }

带有箭头的行显示错误“不支持导入”

[这里有一个telerik博客文章https://www.telerik.com/forums/radflowdocument-to-pdf-error似乎相关,但不是100%肯定。请注意,请确保提供者正确配对,我相信他们在我的示例中。...

同样,最终目标是打开PDF并向其中添加一些内容。我认为RadFlowDocument是正确的方向。如果有更好的解决方案,我也很高兴听到。

pdf telerik
1个回答
0
投票

我知道了。 DPL很好,但文档仍在增长,希望这可以帮助某人...

[这来自无数的文章,我无法开始全部引用它们。

DPL中有两种使用w / PDF的概念。FixedDocument需要页面。我认为这是为了将文档缝在一起。我相信FlowDocument可以像HTML渲染器那样布置事物。

我正在使用固定的,主要是b / c,我可以使它工作。

    using System;
    using System.IO;
    using System.Windows;  //nec for Size struct
    using System.Diagnostics; //nec for launching the pdf at the end 

    using Telerik.Windows.Documents.Fixed.Model;
    //if you have fixed and flow provider, you have to specify, so I make a shortcut
    using FixedProvider = Telerik.Windows.Documents.Fixed.FormatProviders.Pdf;
    using Telerik.Windows.Documents.Fixed.Model.Editing;

    using Microsoft.VisualStudio.TestTools.UnitTesting;


    namespace DocAggregator
    {
        [TestClass]
        public class UnitTest2
        {
            [TestMethod]
            public void EditNewFIle_SrcAsFixed_TrgAsFixed()
            {
                String dt = @"C:\USERS\greg\DESKTOP\DPL\";
                String sourceFile = dt + "output.pdf";

                //Open the sourceDoc so you can add stuff to it
                RadFixedDocument sourceDoc;

                //a provider parses the actual file into the model. 

                FixedProvider.PdfFormatProvider fixedProv = new FixedProvider.PdfFormatProvider();
                using (Stream stream = File.OpenRead(sourceFile))
                {
                    //'populate' the doc object from the file

                    //using the  FLOW classes, I get "Import  Not Supported". 
                    sourceDoc = fixedProv.Import(stream);
                }
                int pages = sourceDoc.Pages.Count;
                int pageCounter = 1;
                int xoffset = 150;
                int yoffset = 50;

                //editor is the thing that lets you add elements into the source doc
//Like the provider, the Editor needs to match the document class (Fixed or Flow)
                RadFixedDocumentEditor editor = new RadFixedDocumentEditor(sourceDoc);

                foreach (RadFixedPage page in sourceDoc.Pages)
                {
                    FixedContentEditor pEd = new FixedContentEditor(page);
                    Size ps = page.Size;

                    pEd.Position.Translate(ps.Width - xoffset, ps.Height - yoffset);

                    Block block = new Block();
                    block.HorizontalAlignment = Telerik.Windows.Documents.Fixed.Model.Editing.Flow.HorizontalAlignment.Center;
                    block.TextProperties.FontSize = 22;
                    block.InsertText(string.Format("Page {0} of {1} ", pageCounter, pages));
                    pEd.DrawBlock(block);
                    pageCounter++;
                }

                string exportFileName = "addedPageNums.pdf";

                if (File.Exists(exportFileName))
                {
                    File.Delete(exportFileName);
                }

                File.WriteAllBytes(exportFileName, fixedProv.Export(sourceDoc));
                //launch the app
                Process.Start(exportFileName);
            }

        }
    }
© www.soinside.com 2019 - 2024. All rights reserved.