Разделение PDF-документов на отдельные страницы — распространённая задача при разработке программного обеспечения. В этой статье мы рассмотрим, как можно разделять PDF-документы непосредственно в памяти, не сохраняя промежуточные файлы на диске, используя язык программирования C# и платформу .NET с компонентом SautinSoft.Pdf.
Чтобы выполнить задачу, нам понадобится выполнить следующие шаги:
Полный код
using System;
using System.IO;
using System.Collections.Generic;
using SautinSoft;
using SautinSoft.Pdf;
using SautinSoft.Pdf.Content;
using SautinSoft.Pdf.Facades;
namespace Sample
{
class Sample
{
/// <summary>
/// Split PDF documents in memory using C# and .NET.
/// </summary>
/// <remarks>
/// Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/merge-pdf-documents-in-memory-using-csharp-and-dotnet.php
/// </remarks>
static void Main(string[] args)
{
// Before starting this example, please get a free trial key:
// https://sautinsoft.com/start-for-free/
// Apply the key here:
// PdfDocument.SetLicense("...");
SplitPdfInMemory();
}
static void SplitPdfInMemory()
{
int page = 0;
using var fs = new FileStream(@"..\..\..\005.pdf", FileMode.Open, FileAccess.ReadWrite);
foreach (var stream in PdfSplitter.Split(fs, PdfLoadOptions.Default, 0, int.MaxValue))
{
using var output = new FileStream($"Page {++page}.pdf", FileMode.Create, FileAccess.ReadWrite);
stream.CopyTo(output);
}
// Show the "Page 5.pdf"
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo("Page 5.pdf") { UseShellExecute = true });
}
}
}
Imports System
Imports System.IO
Imports System.Collections.Generic
Imports SautinSoft
Imports SautinSoft.Pdf
Imports SautinSoft.Pdf.Content
Imports SautinSoft.Pdf.Facades
Module Sample
''' <summary>
''' Split PDF documents in memory using VB.NET.
''' </summary>
''' <remarks>
''' Details: https://sautinsoft.com/products/pdf/help/net/developer-guide/merge-pdf-documents-in-memory-using-csharp-and-dotnet.php
''' </remarks>
Sub Main(args As String())
' Before starting this example, please get a free trial key:
' https://sautinsoft.com/start-for-free/
' Apply the key here:
' PdfDocument.SetLicense("...")
SplitPdfInMemory()
End Sub
Sub SplitPdfInMemory()
Dim page As Integer = 0
Using fs As New FileStream("..\..\..\005.pdf", FileMode.Open, FileAccess.ReadWrite)
For Each stream In PdfSplitter.Split(fs, PdfLoadOptions.Default, 0, Integer.MaxValue)
Using output As New FileStream($"Page {page + 1}.pdf", FileMode.Create, FileAccess.ReadWrite)
stream.CopyTo(output)
End Using
page += 1
Next
End Using
' Show the "Page 5.pdf"
System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo("Page 5.pdf") With {.UseShellExecute = True})
End Sub
End Module
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.ru или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: