Example #1
0
 private void Split(int start, int end, int repeatEvery)
 {
     if (this.CheckOutput())
     {
         PDFHelper.DisplayTrialPopupIfNecessary();
         try
         {
             Splitter splitter = new Splitter();
             splitter.setStartPage(start);
             splitter.setEndPage(end);
             splitter.setSplitAtPage(repeatEvery);
             List list = splitter.split(this.pdfDocument.PDFBoxDocument);
             for (int i = 0; i < list.size(); i++)
             {
                 PDDocument pDDocument = PDFHelper.AddTrialStampIfNecessary((PDDocument)list.@get(i));
                 string     str        = string.Format("{0} [{1}].pdf", this.OutputFileName, i);
                 pDDocument.save(Path.Combine(this.OutputFilePath, str));
             }
         }
         catch (Exception exception1)
         {
             Exception exception = exception1;
             throw new PDFToolkitException(exception.Message, exception.InnerException);
         }
     }
 }
Example #2
0
 private void GetSubFolders(DirectoryInfo sourceDirectoryInfo)
 {
     DirectoryInfo[] directories = sourceDirectoryInfo.GetDirectories();
     for (int i = 0; i < (int)directories.Length; i++)
     {
         this.GetSubFolders(directories[i]);
     }
     this.mergeUtility = new PDFMergerUtility();
     FileInfo[] files = sourceDirectoryInfo.GetFiles("*.pdf");
     for (int j = 0; j < (int)files.Length; j++)
     {
         FileInfo fileInfo = files[j];
         this.mergeUtility.addSource(fileInfo.FullName);
     }
     if (!PDFHelper.AddStamp)
     {
         this.mergeUtility.setDestinationFileName(Path.Combine(this.outputFolder, string.Concat(sourceDirectoryInfo.Name, ".pdf")));
         this.mergeUtility.mergeDocuments();
     }
     else
     {
         string str = Path.Combine(Path.GetTempPath(), string.Concat("aquaforest\\pdftoolkit\\", Path.GetRandomFileName(), ".pdf"));
         this.mergeUtility.setDestinationFileName(str);
         this.mergeUtility.mergeDocuments();
         PDDocument pDDocument = PDDocument.load(new java.io.File(str));
         pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
         pDDocument.save(Path.Combine(this.outputFolder, string.Concat(sourceDirectoryInfo.Name, ".pdf")));
         if (System.IO.File.Exists(str))
         {
             System.IO.File.Delete(str);
         }
     }
 }
Example #3
0
 public void SaveOpenSettings(string outputFile)
 {
     PDFHelper.DisplayTrialPopupIfNecessary();
     PDFHelper.AddTrialStampIfNecessary(this.pdfDocument.PDFBoxDocument, false);
     this.documentDocumentOpenSettings.setViewerPreferences(this.documentViewerPrefernces);
     this.pdfDocument.PDFBoxDocument.save(outputFile);
 }
Example #4
0
 public void MergePDFs(List <string> sourcePDFs, string outputFile)
 {
     PDFHelper.DisplayTrialPopupIfNecessary();
     foreach (string sourcePDF in sourcePDFs)
     {
         this.mergeUtility.addSource(sourcePDF);
     }
     if (!PDFHelper.AddStamp)
     {
         this.mergeUtility.setDestinationFileName(outputFile);
         this.mergeUtility.mergeDocuments();
     }
     else
     {
         string str = Path.Combine(Path.GetTempPath(), string.Concat(Path.GetRandomFileName(), ".pdf"));
         this.mergeUtility.setDestinationFileName(str);
         this.mergeUtility.mergeDocuments();
         PDDocument pDDocument = PDDocument.load(new java.io.File(str));
         pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
         pDDocument.save(outputFile);
         if (pDDocument != null)
         {
             pDDocument.close();
         }
         if (System.IO.File.Exists(str))
         {
             System.IO.File.Delete(str);
         }
     }
 }
Example #5
0
 public void SplitByTopLevelBookmarks()
 {
     if (this.CheckOutput())
     {
         PDFHelper.DisplayTrialPopupIfNecessary();
         try
         {
             PDDocumentCatalog documentCatalog = this.pdfDocument.PDFBoxDocument.getDocumentCatalog();
             PDDocumentOutline documentOutline = documentCatalog.getDocumentOutline();
             if (documentOutline != null)
             {
                 PDOutlineItem firstChild = documentOutline.getFirstChild();
                 PDPageTree    pages      = documentCatalog.getPages();
                 List <int>    nums       = new List <int>();
                 while (firstChild != null)
                 {
                     PDPage pDPage = firstChild.findDestinationPage(this.pdfDocument.PDFBoxDocument);
                     nums.Add(pages.indexOf(pDPage));
                     firstChild = firstChild.getNextSibling();
                 }
                 nums.Add(pages.getCount());
                 for (int i = 0; i < nums.Count - 1; i++)
                 {
                     int        item       = nums[i];
                     int        num        = nums[i + 1];
                     PDDocument pDDocument = new PDDocument();
                     for (int j = item; j < num; j++)
                     {
                         pDDocument.addPage(this.pdfDocument.PDFBoxDocument.getPage(j));
                     }
                     pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                     string str = string.Format("{0} [{1}].pdf", this.OutputFileName, i);
                     pDDocument.save(Path.Combine(this.OutputFilePath, str));
                     pDDocument.close();
                 }
             }
             else
             {
                 Console.WriteLine("This document does not contain any bookmarks.");
             }
         }
         catch (Exception exception1)
         {
             Exception exception = exception1;
             throw new PDFToolkitException(exception.Message, exception.InnerException);
         }
     }
 }
Example #6
0
        public void SplitByPageRanges(string pageRanges)
        {
            int num;
            int num1;
            int num2;
            int num3;

            if (this.CheckOutput())
            {
                PDFHelper.DisplayTrialPopupIfNecessary();
                try
                {
                    string[] strArrays  = pageRanges.Split(new char[] { ',' });
                    List     list       = IteratorUtils.toList(this.pdfDocument.PDFBoxDocument.getPages().iterator());
                    int      num4       = list.size();
                    string[] strArrays1 = strArrays;
                    for (int i = 0; i < (int)strArrays1.Length; i++)
                    {
                        string str = strArrays1[i];
                        if (this.ConfigureRange(str, num4, out num, out num1, out num2, out num3))
                        {
                            List       list1      = list.subList(num, num1);
                            PDDocument pDDocument = new PDDocument();
                            for (int j = num2; j < list1.size(); j = j + num3)
                            {
                                PDPage pDPage = (PDPage)list1.@get(j);
                                pDPage.getResources();
                                pDDocument.addPage(pDPage);
                            }
                            pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                            string str1 = string.Format("{0} [{1}].pdf", this.OutputFileName, str);
                            pDDocument.save(Path.Combine(this.OutputFilePath, str1));
                        }
                        else
                        {
                            Console.WriteLine("Invalid range: {0}", str);
                        }
                    }
                }
                catch (Exception exception1)
                {
                    Exception exception = exception1;
                    throw new PDFToolkitException(exception.Message, exception.InnerException);
                }
            }
        }
Example #7
0
 public void Save(string output)
 {
     PDFHelper.DisplayTrialPopupIfNecessary();
     if (PDFHelper.AddStamp)
     {
         this.pdfDocument = PDFHelper.AddTrialStampIfNecessary(this.pdfDocument);
     }
     try
     {
         this.pdfDocument.save(output);
     }
     catch (Exception exception1)
     {
         Exception exception = exception1;
         throw new PDFToolkitException(exception.Message, exception);
     }
 }
Example #8
0
 private void Save()
 {
     PDFHelper.DisplayTrialPopupIfNecessary();
     if (PDFHelper.AddStamp)
     {
         this.pdfFile = PDFHelper.AddTrialStampIfNecessary(this.pdfFile);
     }
     try
     {
         this.pdfFile.save(this.outputFile);
         this.pdfFile.close();
     }
     catch (Exception exception1)
     {
         Exception exception = exception1;
         throw new PDFToolkitException(exception.Message, exception.InnerException);
     }
 }
Example #9
0
        private void SplitByRepeatingPageRanges(string pageRange, int repeatEvery, PDPageTree allPages, int pageCount, string suffix)
        {
            int num;
            int num1;
            int num2;
            int num3;

            if (this.ConfigureRange(pageRange, pageCount, out num, out num1, out num2, out num3))
            {
                List       list       = IteratorUtils.toList(allPages.iterator());
                List       list1      = list.subList(num, num1);
                PDDocument pDDocument = new PDDocument();
                for (int i = num2; i < list1.size(); i = i + num3)
                {
                    pDDocument.addPage((PDPage)list1.@get(i));
                }
                pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                string str = string.Format("{0} [{1}].pdf", this.OutputFileName, this.splitCounter);
                pDDocument.save(Path.Combine(this.OutputFilePath, str));
                if (repeatEvery > 0)
                {
                    num  = num + repeatEvery + 1;
                    num1 = num1 + repeatEvery;
                    if (num <= pageCount)
                    {
                        if (num1 > pageCount)
                        {
                            num1 = pageCount;
                        }
                        this.splitCounter = this.splitCounter + 1;
                        string str1 = string.Format("{0}-{1}{2}", num, num1, suffix);
                        this.SplitByRepeatingPageRanges(str1, repeatEvery, allPages, pageCount, suffix);
                    }
                }
            }
            else
            {
                Console.WriteLine("Invalid page range.");
            }
        }
Example #10
0
        public void ApplyOverlay(string outputFile)
        {
            PDFHelper.DisplayTrialPopupIfNecessary();
            Map     hashMap = new HashMap();
            Overlay overlay = new Overlay();

            overlay.setInputPDF(this.overlayDestination.PDFBoxDocument);
            overlay.setAllPagesOverlayPDF(this.overlay.PDFBoxDocument);
            overlay.setOverlayPosition(Overlay.Position.FOREGROUND);
            PDDocument pDDocument = overlay.overlay(hashMap);

            if (!PDFHelper.AddStamp)
            {
                pDDocument.save(outputFile);
            }
            else
            {
                pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                pDDocument.save(outputFile);
            }
            pDDocument.close();
            overlay.close();
        }
Example #11
0
 public void SecurePDF(PDFDocument sourcePDF, string outputFile)
 {
     PDFHelper.DisplayTrialPopupIfNecessary();
     try
     {
         AccessPermission accessPermission = new AccessPermission();
         accessPermission.setCanAssembleDocument(this.Permission.AllowAssembly);
         accessPermission.setCanExtractContent(this.Permission.AllowExtractContents);
         accessPermission.setCanExtractForAccessibility(this.Permission.AllowExtractForAccessibility);
         accessPermission.setCanFillInForm(this.Permission.AllowFillInForm);
         accessPermission.setCanModify(this.Permission.AllowModifyContents);
         accessPermission.setCanModifyAnnotations(this.Permission.AllowModifyAnnotations);
         accessPermission.setCanPrint(this.Permission.AllowPrinting);
         accessPermission.setCanPrintDegraded(this.Permission.AllowDegradedPrinting);
         StandardProtectionPolicy standardProtectionPolicy = new StandardProtectionPolicy(this.OwnerPassword, this.UserPassword, accessPermission);
         if (!PDFHelper.AddStamp)
         {
             sourcePDF.PDFBoxDocument.protect(standardProtectionPolicy);
             sourcePDF.PDFBoxDocument.save(outputFile);
             sourcePDF.PDFBoxDocument.close();
         }
         else
         {
             PDDocument pDFBoxDocument = sourcePDF.PDFBoxDocument;
             pDFBoxDocument = PDFHelper.AddTrialStampIfNecessary(pDFBoxDocument);
             pDFBoxDocument.protect(standardProtectionPolicy);
             pDFBoxDocument.save(outputFile);
             pDFBoxDocument.close();
         }
     }
     catch (Exception exception1)
     {
         Exception exception = exception1;
         throw new PDFToolkitException(exception.Message, exception);
     }
 }
Example #12
0
        public void MergeFolderOfPDFs(string sourceFolder, string outputFile, bool processSubFolders)
        {
            FileInfo[] fileInfoArray;
            PDFHelper.DisplayTrialPopupIfNecessary();
            DirectoryInfo directoryInfo = new DirectoryInfo(sourceFolder);

            fileInfoArray = (!processSubFolders ? directoryInfo.GetFiles("*.pdf") : directoryInfo.GetFiles("*.pdf", SearchOption.AllDirectories));
            FileInfo[] fileInfoArray1 = fileInfoArray;
            for (int i = 0; i < (int)fileInfoArray1.Length; i++)
            {
                FileInfo fileInfo = fileInfoArray1[i];
                this.mergeUtility.addSource(fileInfo.FullName);
            }
            if (!PDFHelper.AddStamp)
            {
                this.mergeUtility.setDestinationFileName(outputFile);
                this.mergeUtility.mergeDocuments();
            }
            else
            {
                string str = Path.Combine(Path.GetTempPath(), string.Concat("aquaforest\\pdftoolkit\\", Path.GetRandomFileName(), ".pdf"));
                this.mergeUtility.setDestinationFileName(str);
                this.mergeUtility.mergeDocuments();
                PDDocument pDDocument = PDDocument.load(new java.io.File(str));
                pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                pDDocument.save(outputFile);
                if (pDDocument != null)
                {
                    pDDocument.close();
                }
                if (System.IO.File.Exists(str))
                {
                    System.IO.File.Delete(str);
                }
            }
        }
Example #13
0
        public PDFAValidationResult ConvertToPDFA()
        {
            PDFAValidationResult pDFAValidationResult = new PDFAValidationResult();

            try
            {
                try
                {
                    bool flag = true;
                    this.CheckImages();
                    pDFAValidationResult.IsValid = false;
                    this.EmbedFonts(flag);
                    this.doc.save(this.tempFileName);
                    PDDocumentCatalog documentCatalog = this.doc.getDocumentCatalog();
                    try
                    {
                        if (documentCatalog.getOutputIntents().size() <= 0)
                        {
                            this.colorProfile = new FileInputStream(this.iccString);
                            PDOutputIntent pDOutputIntent = new PDOutputIntent(this.doc, this.colorProfile);
                            pDOutputIntent.setInfo("sRGB IEC61966-2.1");
                            pDOutputIntent.setOutputCondition("sRGB IEC61966-2.1");
                            pDOutputIntent.setOutputConditionIdentifier("sRGB IEC61966-2.1");
                            pDOutputIntent.setRegistryName("http://www.color.org");
                            documentCatalog.addOutputIntent(pDOutputIntent);
                            this.doc.save(this.tempFileName);
                        }
                    }
                    catch (Exception exception)
                    {
                    }
                    PDFHelper.DisplayTrialPopupIfNecessary();
                    PDFHelper.AddTrialStampIfNecessary(this.doc, false);
                    this.DoMetadata();
                    if (!this.ValidatePDF)
                    {
                        Console.WriteLine("The file was convereted but it has not been validated, to validate pdfa files after conversion set the ValidatePDF porperty to true.");
                        System.IO.File.Copy(this.tempFileName, this.outPutFileName, this.overwrite);
                    }
                    else
                    {
                        PDFAValidationResult pDFAValidationResult1 = (new PDFAValidator()).ValidatePDFA(this.tempFileName, (AquaforestPDFAFlavour)this.PDFAFlavour);
                        pDFAValidationResult.IsValid          = pDFAValidationResult1.IsValid;
                        pDFAValidationResult.ValidationResult = pDFAValidationResult1.ValidationResult;
                        if ((pDFAValidationResult.IsValid ? false : !this.copyUnvalidated))
                        {
                            Console.WriteLine("The file was convereted but failed during validation. If you want to copy this to the output file set CopyUnvalidated to true");
                        }
                        else
                        {
                            System.IO.File.Copy(this.tempFileName, this.outPutFileName, this.overwrite);
                        }
                    }
                }
                catch (Exception exception1)
                {
                    Console.WriteLine("The attempted pdf/a conversion failed.\n{0}", exception1.Message);
                    PDF2PDFaConverter.EmptyDirectory(Path.GetDirectoryName(this.tempFileName));
                    Directory.Delete(Path.GetDirectoryName(this.tempFileName));
                }
            }
            finally
            {
                if (this.doc != null)
                {
                    this.doc.close();
                    this.doc = null;
                }
                try
                {
                    PDF2PDFaConverter.EmptyDirectory(Path.GetDirectoryName(this.tempFileName));
                    Directory.Delete(Path.GetDirectoryName(this.tempFileName));
                }
                catch (Exception exception2)
                {
                }
            }
            return(pDFAValidationResult);
        }
Example #14
0
        internal void createPDFFromText(string pdfFile)
        {
            string     str;
            bool       flag;
            PDDocument pDDocument = new PDDocument();

            PDFHelper.DisplayTrialPopupIfNecessary();
            PDFHelper.CheckOutputFolder(Path.GetDirectoryName(pdfFile));
            try
            {
                this.pdfFileName = pdfFile;
                Reader fileReader = new FileReader(this.textFile);
                int    num        = 40;
                if (this.font == null)
                {
                    this.font = PDFType1Font.TIMES_ROMAN;
                }
                float       height = this.font.PDFBoxFont.getBoundingBox().getHeight() / 1000f;
                PDRectangle lETTER = PDRectangle.LETTER;
                if (this.isLandescape)
                {
                    lETTER = new PDRectangle(lETTER.getHeight(), lETTER.getWidth());
                }
                height = height * this.fontSize * 1.05f;
                string[]            strArrays           = System.IO.File.ReadAllLines(this.textFile);
                PDPage              pDPage              = new PDPage(lETTER);
                PDPageContentStream pDPageContentStream = null;
                float    single     = -1f;
                float    width      = pDPage.getMediaBox().getWidth() - (float)(2 * num);
                bool     flag1      = true;
                string[] strArrays1 = strArrays;
                for (int i = 0; i < (int)strArrays1.Length; i++)
                {
                    string str1 = strArrays1[i];
                    flag1 = false;
                    string   str2       = Regex.Replace(str1, "\\t|\\n|\\r", "");
                    string[] strArrays2 = str2.Replace("[\\n\\r]+$", "").Split(new char[] { ' ' });
                    int      num1       = 0;
                    while (num1 < (int)strArrays2.Length)
                    {
                        StringBuilder stringBuilder = new StringBuilder();
                        float         stringWidth   = 0f;
                        bool          flag2         = false;
                        do
                        {
                            string str3 = "";
                            int    num2 = strArrays2[num1].IndexOf('\f');
                            if (num2 != -1)
                            {
                                flag2 = true;
                                str   = strArrays2[num1].Substring(0, num2);
                                if (num2 < strArrays2[num1].Length)
                                {
                                    str3 = strArrays2[num1].Substring(num2 + 1);
                                }
                            }
                            else
                            {
                                str = strArrays2[num1];
                            }
                            if ((str.Length > 0 ? true : !flag2))
                            {
                                stringBuilder.Append(str);
                                stringBuilder.Append(" ");
                            }
                            if ((!flag2 ? false : str3.Length != 0))
                            {
                                strArrays2[num1] = str3;
                            }
                            else
                            {
                                num1++;
                            }
                            if (!flag2)
                            {
                                if (num1 < (int)strArrays2.Length)
                                {
                                    string str4 = strArrays2[num1];
                                    num2 = str4.IndexOf('\f');
                                    if (num2 != -1)
                                    {
                                        str4 = str4.Substring(0, num2);
                                    }
                                    string str5 = string.Concat(stringBuilder.ToString(), " ", str4);
                                    try
                                    {
                                        stringWidth = this.font.PDFBoxFont.getStringWidth(str5) / 1000f * this.fontSize;
                                    }
                                    catch (Exception exception)
                                    {
                                    }
                                }
                                flag = (num1 >= (int)strArrays2.Length ? false : stringWidth < width);
                            }
                            else
                            {
                                break;
                            }
                        }while (flag);
                        if (single < (float)num)
                        {
                            pDPage = new PDPage(lETTER);
                            pDDocument.addPage(pDPage);
                            if (pDPageContentStream != null)
                            {
                                pDPageContentStream.endText();
                                pDPageContentStream.close();
                            }
                            pDPageContentStream = new PDPageContentStream(pDDocument, pDPage);
                            pDPageContentStream.setFont(this.font.PDFBoxFont, this.fontSize);
                            pDPageContentStream.beginText();
                            single = pDPage.getMediaBox().getHeight() - (float)num + height;
                            pDPageContentStream.newLineAtOffset((float)num, single);
                        }
                        if (pDPageContentStream == null)
                        {
                            throw new java.io.IOException("Error:Expected non-null content stream.");
                        }
                        pDPageContentStream.newLineAtOffset(0f, -height);
                        single = single - height;
                        try
                        {
                            pDPageContentStream.showText(stringBuilder.ToString());
                            if (flag2)
                            {
                                pDPage = new PDPage(lETTER);
                                pDDocument.addPage(pDPage);
                                pDPageContentStream.endText();
                                pDPageContentStream.close();
                                pDPageContentStream = new PDPageContentStream(pDDocument, pDPage);
                                pDPageContentStream.setFont(this.font.PDFBoxFont, this.fontSize);
                                pDPageContentStream.beginText();
                                single = pDPage.getMediaBox().getHeight() - (float)num + height;
                                pDPageContentStream.newLineAtOffset((float)num, single);
                            }
                        }
                        catch (Exception exception1)
                        {
                        }
                    }
                }
                if (flag1)
                {
                    pDDocument.addPage(pDPage);
                }
                if (pDPageContentStream != null)
                {
                    pDPageContentStream.endText();
                    pDPageContentStream.close();
                }
                if (PDFHelper.AddStamp)
                {
                    pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
                }
                try
                {
                    pDDocument.save(pdfFile);
                }
                catch (Exception exception3)
                {
                    Exception exception2 = exception3;
                    throw new PDFToolkitException(exception2.Message, exception2.InnerException);
                }
            }
            catch (Exception exception5)
            {
                Exception exception4 = exception5;
                if (pDDocument != null)
                {
                    pDDocument.close();
                }
                throw exception4;
            }
        }
Example #15
0
        private void DrawTable()
        {
            PDPage     pDPage;
            PDDocument pDDocument = new PDDocument();

            pDPage = (this.pageSettings.size != null ? new PDPage(this.pageSettings.size.PDFBoxRectangle) : new PDPage());
            PDRectangle mediaBox  = pDPage.getMediaBox();
            int         num       = this.contents.Count <List <string> >();
            int         num1      = this.contents.ElementAt <List <string> >(0).Count <string>();
            float       width     = mediaBox.getWidth() - (this.pageSettings.marginLeft + this.pageSettings.marginRight);
            float       single    = width / (float)num1;
            float       rowHeight = this.tableSettings.RowHeight;
            float       height    = mediaBox.getHeight() - this.pageSettings.marginTop;
            float       single1   = height - this.pageSettings.marginBottom;
            float       single2   = rowHeight * (float)num;
            int         num2      = num;
            int         num3      = 1;
            int         num4      = 0;

            if (single2 > single1)
            {
                num2    = (int)Math.Floor((double)(single1 / rowHeight));
                num3    = (int)Math.Ceiling((double)num / (double)num2);
                single2 = (float)num2 * rowHeight;
                num4    = num % num2;
            }
            int num5 = 0;

            for (int i = 0; i < num3; i++)
            {
                pDPage = (this.pageSettings.size != null ? new PDPage(this.pageSettings.size.PDFBoxRectangle) : new PDPage());
                pDDocument.addPage(pDPage);
                PDPageContentStream pDPageContentStream = new PDPageContentStream(pDDocument, pDPage);
                if ((i != num3 - 1 ? false : num4 > 0))
                {
                    num2    = num4;
                    single2 = rowHeight * (float)num2;
                }
                float single3 = height;
                for (int j = 0; j <= num2; j++)
                {
                    pDPageContentStream.drawLine(this.pageSettings.marginLeft, single3, this.pageSettings.marginLeft + width, single3);
                    single3 = single3 - rowHeight;
                }
                float single4 = this.pageSettings.marginLeft;
                for (int k = 0; k <= num1; k++)
                {
                    pDPageContentStream.drawLine(single4, height, single4, height - single2);
                    single4 = single4 + single;
                }
                pDPageContentStream.setFont(this.pageSettings.Font.PDFBoxFont, this.pageSettings.FontSize);
                float cellMargin = this.pageSettings.marginLeft + this.tableSettings.CellMargin;
                float single5    = height - 15f;
                for (int l = 0; l < num2; l++)
                {
                    foreach (string item in this.contents[num5])
                    {
                        pDPageContentStream.beginText();
                        pDPageContentStream.newLineAtOffset(cellMargin, single5);
                        pDPageContentStream.showText(item);
                        pDPageContentStream.endText();
                        cellMargin = cellMargin + single;
                    }
                    single5    = single5 - rowHeight;
                    cellMargin = this.pageSettings.marginLeft + this.tableSettings.CellMargin;
                    num5++;
                }
                pDPageContentStream.close();
            }
            pDDocument = PDFHelper.AddTrialStampIfNecessary(pDDocument);
            pDDocument.save(this.outputPDF);
        }