ByteScout PDF Extractor SDK - C# - Extract Attachments - ByteScout

ByteScout PDF Extractor SDK – C# – Extract Attachments

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF Extractor SDK – C# – Extract Attachments

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 extractor.Dispose(); } } } [/csharp]


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next