ByteScout PDF SDK - C# - Split PDF Document - ByteScout

ByteScout PDF SDK – C# – Split PDF Document

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – C# – Split PDF Document

How to split PDF document in C# and ByteScout PDF SDK

The tutorial below will demonstrate how to split PDF document in C#

With this source code sample you may quickly learn how to split PDF document in C#. ByteScout PDF SDK: the component to help programmers in generating new pdf files, modifying and updating existing pdf documents or pdf forms. Provides support for auto-filling pdf forms, adding text with adjustable font, style, size, font family, new form fields, vector and raster drawings. It can split PDF document in C#.

This code snippet below for ByteScout PDF SDK works best when you need to quickly split PDF document in your C# application. In order to implement the functionality, you should copy and paste this code for C# below into your code editor with your app, compile and run your application. Implementing C# application typically includes multiple stages of the software development so even if the functionality works please test it with your data and the production environment.

Free trial version of ByteScout PDF SDK is available for download from our website. Get it to try other source code samples for C#.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System.Diagnostics; using Bytescout.PDF; namespace SplitDocument { class Program { static void Main(string[] args) { // Open first document Document document1 = new Document("document1.pdf"); document1.RegistrationName = "demo"; document1.RegistrationKey = "demo"; // Create result document that will contain only required pages Document document2 = new Document(); document2.RegistrationName = "demo"; document2.RegistrationKey = "demo"; // Add 1st and 3rd pages of the first document to the result document document2.Pages.Add(document1.Pages[0]); document2.Pages.Add(document1.Pages[2]); // Save result document document2.Save("result.pdf"); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("result.pdf"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next