PDF Extractor SDK – Page 50 – 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++ - Extract Pages CPPExample.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Info Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Images by Page Program.cs using System; using System.Drawing.Imaging; using Bytescout.PDFExtractor; using System.Diagnostics; namespace ExtractImagesByPages { class Program { static void Main(string[] args) { // Create Bytescout.PDFExtractor.ImageExtractor instance ImageExtractor extractor = new ImageExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(@".\sample1.pdf"); // Get count of pages int pageCount = extractor.GetPageCount(); // Extract images from each page for (int i = 0; i < pageCount; [...]
ByteScout PDF Extractor SDK - C# - Extract Images Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Filled Form Data Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Audio Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Extract Attachments Program.cs using System; using Bytescout.PDFExtractor; namespace ExtractAttachments { class Program { static void Main() { // Create Bytescout.PDFExtractor.AttachmentExtractor instance AttachmentExtractor extractor = new AttachmentExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; // Load sample PDF document extractor.LoadDocumentFromFile(@".\attachments.pdf"); for (int i = 0; i < extractor.Count; i++) { Console.WriteLine("Saving attachment: " + extractor.GetFileName(i)); // Save attachment to file extractor.Save(i, extractor.GetFileName(i)); Console.WriteLine("File size: " + extractor.GetSize(i)); } // Cleanup [...]
ByteScout PDF Extractor SDK - C++ - Compare Documents CPPExample.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - C# - Batch Processing Program.cs   Click here to get your Free Trial version of the SDK
ByteScout PDF Extractor SDK - ASP.NET - ZUGFeRD Invoice Extraction Default.aspx.cs Web.config   Click here to get your Free Trial version of the SDK