PDF Extractor SDK – Page 49 – ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

PDF Extractor SDK

  • Home
  • /
  • PDF Extractor SDK
ByteScout PDF Extractor SDK - C++ - Find Table And Extract As CSV FindTableAndExtractAsCsv.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Find Keyword And Extract Text Program.cs using System; using System.Drawing; using Bytescout.PDFExtractor; namespace FindText { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.TextExtractor instance TextExtractor extractor = new TextExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(@".\sample2.pdf"); int pageCount = extractor.GetPageCount(); // Search each page for some keyword for (int i = 0; i < pageCount; i++) { if (extractor.Find(i, "References", [...]
ByteScout PDF Extractor SDK - C# - Find Keyword And Extract Page Program.cs // This example page extraction by found keyword. using System; using Bytescout.PDFExtractor; namespace SplittingExample { class Program { static void Main(string[] args) { string inputFile = @".\sample2.pdf"; // Create Bytescout.PDFExtractor.TextExtractor instance TextExtractor extractor = new TextExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(inputFile); int pageCount = extractor.GetPageCount(); // Search each page for a keyword for (int i [...]
ByteScout PDF Extractor SDK - C# - Extract Video Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract To Stream Program.cs using System; using System.IO; using System.Diagnostics; using Bytescout.PDFExtractor; namespace ExtractToStream { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.TextExtractor instance TextExtractor extractor = new TextExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(@".\sample1.pdf"); // Get page count int pageCount = extractor.GetPageCount(); for (int i = 0; i < pageCount; i++) { // Create new stream. You can [...]
ByteScout PDF Extractor SDK - C# - Extract Text From Page Area Program.cs using System; using Bytescout.PDFExtractor; using System.Drawing; namespace ExtractTextFromPageArea { class Program { static void Main(string[] args) { TextExtractor extractor = new TextExtractor("demo", "demo"); // Load document extractor.LoadDocumentFromFile(@".\sample2.pdf"); // Get page count int pageCount = extractor.GetPageCount(); // Iterate through pages for (int i = 0; i < pageCount; i++) { // Define rectangle location to extract from RectangleF location = new RectangleF(0, 0, [...]
ByteScout PDF Extractor SDK - C# - Extract Text By Pages Program.cs using System; using Bytescout.PDFExtractor; using System.Diagnostics; namespace ExtractTextByPages { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.TextExtractor instance TextExtractor extractor = new TextExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(@".\sample2.pdf"); // Get page count int pageCount = extractor.GetPageCount(); for (int i = 0; i < pageCount; i++) { string fileName = "page" + i + [...]
ByteScout PDF Extractor SDK - C# - Extract Text By Columns Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C++ - Extract Text CPPExample.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Table Structure As a programmer, do you sometimes wish that there is a faster and easier way to complete various tasks such as seamless table structure extraction? ByteScout PDF Extractor SDK can help you in that duty. Other SDKs offer merging or splitting PDFs, automatically extracting data from PDFs, and editing and reformatting documents. ByteScout PDF Extractor SDK gives developers of any skill and experience level the [...]