GetTableData.cs
- //
- // This code is part of Document Solutions for PDF demos.
- // Copyright (c) MESCIUS inc. All rights reserved.
- //
- using System;
- using System.IO;
- using System.Drawing;
- using System.Collections.Generic;
- using GrapeCity.Documents.Pdf;
- using GrapeCity.Documents.Pdf.Recognition;
- using GrapeCity.Documents.Text;
- using GrapeCity.Documents.Common;
- using GCTEXT = GrapeCity.Documents.Text;
- using GCDRAW = GrapeCity.Documents.Drawing;
-
- namespace DsPdfWeb.Demos
- {
- // Extract data from a table.
- public class GetTableData
- {
- public int CreatePDF(Stream stream)
- {
- const float DPI = 72;
- const float margin = 36;
- var doc = new GcPdfDocument();
-
- var tf = new TextFormat()
- {
- Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "segoeui.ttf")),
- FontSize = 9,
- ForeColor = Color.Black
- };
- var tfHdr = new TextFormat(tf)
- {
- Font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "segoeuib.ttf")),
- FontSize = 11,
- ForeColor = Color.DarkBlue
- };
- var tfRed = new TextFormat(tf) { ForeColor = Color.Red };
-
- using (var fs = File.OpenRead(Path.Combine("Resources", "PDFs", "zugferd-invoice.pdf")))
- {
- // The approx table bounds:
- var tableBounds = new RectangleF(0, 3 * DPI, 8.5f * DPI, 3.75f * DPI);
-
- var page = doc.NewPage();
- page.Landscape = true;
- var g = page.Graphics;
-
- var rc = Common.Util.AddNote(
- "This sample loads a PDF that contains a table (a sample invoice), " +
- "and extracts the table from the PDF using the Page.GetTable() method. " +
- "The extracted data is printed as a list of rows and cells. " +
- "The sample invoice with the table is appended to the generated PDF for reference.",
- page,
- new RectangleF(margin, margin, page.Bounds.Width - margin * 2, page.Bounds.Height - margin * 2));
-
- var tl = g.CreateTextLayout();
- tl.MaxWidth = page.Bounds.Width;
- tl.MaxHeight = page.Bounds.Height;
- tl.MarginAll = margin;
- tl.MarginTop = rc.Bottom;
- tl.DefaultTabStops = 150;
- tl.LineSpacingScaleFactor = 1.2f;
-
- var docSrc = new GcPdfDocument();
- docSrc.Load(fs);
-
- var itable = docSrc.Pages[0].GetTable(tableBounds);
-
- if (itable == null)
- {
- tl.AppendLine($"No table was found at the specified coordinates.", tfRed);
- }
- else
- {
- tl.Append($"\nThe table has {itable.Cols.Count} column(s) and {itable.Rows.Count} row(s), table data is:", tfHdr);
- tl.AppendParagraphBreak();
- for (int row = 0; row < itable.Rows.Count; ++row)
- {
- var tfmt = row == 0 ? tfHdr : tf;
- for (int col = 0; col < itable.Cols.Count; ++col)
- {
- var cell = itable.GetCell(row, col);
- if (col > 0)
- tl.Append("\t", tfmt);
- if (cell == null)
- tl.Append("<no cell>", tfRed);
- else
- tl.Append(cell.Text, tfmt);
- }
- tl.AppendLine();
- }
- }
-
- var to = new TextSplitOptions(tl) { RestMarginTop = margin, MinLinesInFirstParagraph = 2, MinLinesInLastParagraph = 2 };
- tl.PerformLayout(true);
- while (true)
- {
- var splitResult = tl.Split(to, out TextLayout rest);
- doc.Pages.Last.Graphics.DrawTextLayout(tl, PointF.Empty);
- if (splitResult != SplitResult.Split)
- break;
- tl = rest;
- doc.NewPage().Landscape = true;
- }
-
- // Append the original document for reference:
- doc.MergeWithDocument(docSrc);
-
- doc.Save(stream);
- return doc.Pages.Count;
- }
- }
- }
- }
-