Example #1
0
        public static void Run(
            String openPath                             // source PDF document
            )
        {
            Pdfix pdfix = PdfixEngine.Instance;

            PdfDoc doc = pdfix.OpenDoc(openPath, "");

            if (doc == null)
            {
                throw new Exception(pdfix.GetError());
            }

            var rootObj = doc.GetRootObject();
            var layers  = ReadOCGLayers.ReadLayerNames(rootObj);

            var page = doc.AcquirePage(0);

            foreach (KeyValuePair <string, int> layer in layers)
            {
                Console.WriteLine("Text in layer " + layer.Key + "(" + layer.Value.ToString() + ")");
                var content = page.GetContent();
                for (var i = 0; i < content.GetNumObjects(); i++)
                {
                    var page_obj = content.GetObject(i);
                    CheckPageObject(page_obj, layer);
                }
            }
            page.Release();
            doc.Close();
        }
Example #2
0
        public static void Run(
            String email,                               // authorization email
            String licenseKey,                          // authorization license key
            String openPath                             // source PDF document
            )
        {
            Pdfix pdfix = new Pdfix();

            if (pdfix == null)
            {
                throw new Exception("Pdfix initialization fail");
            }

            if (!pdfix.Authorize(email, licenseKey))
            {
                throw new Exception(pdfix.GetError());
            }

            PdfDoc doc = pdfix.OpenDoc(openPath, "");

            if (doc == null)
            {
                throw new Exception(pdfix.GetError());
            }

            var rootObj = doc.GetRootObject();
            var layers  = ReadOCGLayers.ReadLayerNames(rootObj);

            var page = doc.AcquirePage(0);

            foreach (KeyValuePair <string, int> layer in layers)
            {
                Console.WriteLine("Text in layer " + layer.Key + "(" + layer.Value.ToString() + ")");
                for (var i = 0; i < page.GetNumPageObjects(); i++)
                {
                    var page_obj = page.GetPageObject(i);
                    CheckPageObject(page_obj, layer);
                }
            }
            page.Release();
            doc.Close();
            pdfix.Destroy();
        }
        public static void Run(String rootPath)
        {
            String inputPath  = Utils.GetAbsolutePath(rootPath + "res/");
            String outputPath = Utils.GetAbsolutePath("output");
            String configPath = "";

            System.IO.Directory.CreateDirectory(outputPath);

            //////////////////////////////////////////////////////////////////////
            // Samples Free version - no authorization
            //////////////////////////////////////////////////////////////////////

            Console.WriteLine("OpenFileFromStream Sample");
            OpenFileFromStream.Run(inputPath + "test.pdf");

            Console.WriteLine("ParsePdsObjects Sample");
            ParsePdsObjects.Run(inputPath + "test.pdf");

            Console.WriteLine("Read OCG Sample");
            ReadOCGLayers.Run(inputPath + "test.pdf");

            Console.WriteLine("Extract Text From OCG Layer Sample");
            ExtractTextFromOCGLayer.Run(inputPath + "test.pdf");

            Console.WriteLine("GetFormFieldValueEx Sample");
            GetFormFieldValueEx.Run(inputPath + "test.pdf");

            Console.WriteLine("Render Page sample");
            RenderPage.Run(inputPath + "test.pdf", outputPath + "/RenderPage.jpg");

            ////////////////////////////////////////////////////////////////////////
            //// Samples Basic version
            ////////////////////////////////////////////////////////////////////////

            Console.WriteLine("AddComment Sample");
            AddComment.Run(inputPath + "test.pdf", outputPath + "/AddComment.pdf");

            Console.WriteLine("Add Attachment Annot Sample");
            AddAttachmentAnnot.Run(inputPath + "test.pdf",
                                   outputPath + "/AddAttachmentAnnot.pdf",
                                   inputPath + "/AutoTag_Sample_original.pdf");

            Console.WriteLine("Set Annot Appearance Sample");
            SetAnnotAppearance.Run(inputPath + "test.pdf",
                                   outputPath + "/SetAnnotAppearance.pdf",
                                   inputPath + "/watermark.png");

            Console.WriteLine("Set Annot Custom Appearance Sample");
            SetAnnotCustomAppearance.Run(inputPath + "test.pdf",
                                         outputPath + "/SetAnnotCustomAppearance.pdf",
                                         inputPath + "/watermark.png");

            Console.WriteLine("Extract PDF Data");
            ExtractData.Run(inputPath + "test.pdf", "", false);

            Console.WriteLine("AddTags Sample");
            AddTags.Run(inputPath + "test.pdf",
                        outputPath + "/AddTags.pdf", configPath);

            Console.WriteLine("Document Preflight Sample");
            DocumentPreflight.Run(inputPath + "test.pdf", "");

            Console.WriteLine("AddWatermark Sample");
            AddWatermark.Run(inputPath + "test.pdf",
                             outputPath + "/AddWatermark.pdf",
                             inputPath + "/watermark.png",
                             0, -1, 1, false, PdfAlignment.kAlignmentLeft, PdfAlignment.kAlignmentTop, 0f, 70f, 1f, 45f, 0.9f
                             );

            Console.WriteLine("ConvertToHtml Sample");
            ConvertToHtml.Run(inputPath + "test.pdf",
                              outputPath + "/index.html",
                              configPath,
                              new PdfHtmlParams()
            {
                flags = Pdfix.kHtmlNoExternalCSS | Pdfix.kHtmlNoExternalJS | Pdfix.kHtmlNoExternalIMG | Pdfix.kHtmlNoExternalFONT
            });

            Console.WriteLine("ConvertToHtmlByPages Sample");
            ConvertToHtmlByPages.Run(inputPath + "test.pdf",
                                     configPath,
                                     new PdfHtmlParams()
            {
                flags = Pdfix.kHtmlNoExternalCSS | Pdfix.kHtmlNoExternalJS | Pdfix.kHtmlNoExternalIMG | Pdfix.kHtmlNoExternalFONT
            });

            Console.WriteLine("DigitalSignature Sample");
            DigitalSignature.Run(inputPath + "test.pdf",
                                 outputPath + "/DigitalSignature.pdf",
                                 inputPath + "/test.pfx", "TEST_PASSWORD");

            Console.WriteLine("ExtractTables Sample");
            ExtractTables.Run(inputPath + "test.pdf",
                              outputPath,
                              configPath);

            Console.WriteLine("ExtractText Sample");
            ExtractText.Run(inputPath + "test.pdf");

            Console.WriteLine("ChangeTextColor Sample");
            ChangeTextColor.Run(inputPath + "test.pdf",
                                outputPath + "/ChangeTextColor.pdf");

            Console.WriteLine("ExportImages Sample");
            ExportImages.Run(inputPath + "test.pdf",
                             outputPath);

            Console.WriteLine("FlattenAnnots Sample");
            FlattenAnnots.Run(inputPath + "test.pdf",
                              outputPath + "/FlattenAnnots.pdf");

            Console.WriteLine("MakeAccessible Sample");
            MakeAccessible.Run(inputPath + "test.pdf",
                               outputPath + "/MakeAccessible.pdf",
                               true,
                               "en-us",
                               "",
                               configPath);

            Console.WriteLine("TagsReadStructTree sample");
            TagsReadStructTree.Run(inputPath + "test.pdf");

            Console.WriteLine("TagEditImageAltText");
            TagEditImageAltText.Run(inputPath + "test.pdf",
                                    outputPath + "/TagEditImageAltText.pdf");

            Console.WriteLine("TagEditStructureTree Sample");
            TagEditStructureTree.Run(inputPath + "test.pdf",
                                     outputPath + "/TagEditStructureTree.pdf");

            Console.WriteLine("TagsReadingOrder sample");
            TagsReadingOrder.Run(inputPath + "test.pdf",
                                 outputPath + "/TagsReadingOrder.pdf");

            Console.WriteLine("TagTableAsFigure sample");
            TagTableAsFigure.Run(inputPath + "test.pdf",
                                 outputPath + "/TagTableAsFigure.pdf");

            Console.WriteLine("TagHeadings Sample");
            TagHeadings.Run(inputPath + "test.pdf",
                            outputPath + "/TagHeadings.pdf");

            Console.WriteLine("TagAsArtifact Sample");
            TagAsArtifact.Run(inputPath + "test.pdf",
                              outputPath + "/TagAsArtifact.pdf");

            //Console.WriteLine("OcrWithTesseract Sample");
            //OcrWithTesseract.Run(inputPath + "test.pdf",
            //  outputPath + "OcrWithTesseract.pdf",
            //  inputPath + "/tesseract/tessdata",
            //  "eng");

            Console.WriteLine("ThreadSafePdfix Sample");
            ThreadSafePdfix.Run(inputPath + "test.pdf");
        }