View TextExtract-FromRegionsAndLinks.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text; | |
using Datalogics.PDFL; | |
/* | |
* A sample which demonstrates the use of the DLE API for capturing | |
* the text from specific target locations and from underneath link rectangles. | |
* |
View SplitPDFVariations.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text; | |
using Datalogics.PDFL; | |
/* | |
* | |
* A sample which demonstrates splitting a PDF document based on page intervals or bookmarks or by hits on | |
* key search strings. To split a document, the application needs to create a new, empty document and insert pages |
View FlatTextToPDF.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using Datalogics.PDFL; | |
using System.Diagnostics; | |
/* | |
* | |
* A sample that converts a flat text file with some PCL codes to a PDF document using a monospace font. It will detect: | |
* -- Form Feeds (x0C) |