This repository was archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPdfITextSharp.cs
180 lines (150 loc) · 5.92 KB
/
PdfITextSharp.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
using System.Collections.Generic;
using System.IO;
using Common.DocumentPagingUtils;
using iTextSharp.text;
using iTextSharp.text.pdf;
namespace Utils.Pdf.iTextSharp
{
public class PdfITextSharp : DocumentUtilsBase
{
public PdfITextSharp(string pathLibrary) : base(pathLibrary)
{
}
public PdfITextSharp()
: base("iTextSharp PDF Library")
{
}
public override string DefaultExtension
{
get { return ".pdf"; }
}
public override void Create(string pathFile, IEnumerable<string> pathFilesFrom)
{
using (var stream = new FileStream(pathFile, FileMode.Create))
using (var doc = new Document())
using (var pdf = new PdfCopy(doc, stream))
{
doc.Open();
foreach (var file in pathFilesFrom)
{
var reader = new PdfReader(file);
for (var i = 1; i <= reader.NumberOfPages; i++)
{
var page = pdf.GetImportedPage(reader, i);
pdf.AddPage(page);
}
pdf.FreeReader(reader);
reader.Close();
}
}
}
public override void DeletePage(string pathFile, int pageToDelete)
{
// Intialize a new PdfReader instance with the
// contents of the source Pdf file:
var reader = new PdfReader(pathFile);
var path_temp = Path.Combine(
Path.GetDirectoryName(pathFile),
"temp_" + Path.GetFileName(pathFile)
);
// For simplicity, I am assuming all the pages share the same size
// and rotation as the first page:
using (var source_document = new Document())
using (var pdf_copy_provider = new PdfCopy(source_document, new FileStream(path_temp, FileMode.Create)))
{
source_document.Open();
// Walk the array and add the page copies to the output file:
for (var i = 1; i <= reader.NumberOfPages; i++)
{
if(i == pageToDelete)
continue;
var imported_page = pdf_copy_provider.GetImportedPage(reader, i);
pdf_copy_provider.AddPage(imported_page);
}
source_document.Close();
reader.Close();
}
if (File.Exists(path_temp))
{
File.Delete(pathFile);
File.Move(path_temp, pathFile);
}
}
public override void Insert(string pathFileTo, string pathFileFrom, int index)
{
var path_file_temp = Path.Combine(
Path.GetDirectoryName(pathFileTo),
"temp_" + Path.GetFileName(pathFileTo)
);
using (var reader_from = new PdfReader(pathFileFrom))
using (var reader_to = new PdfReader(pathFileTo))
using (var stream = new FileStream(path_file_temp, FileMode.Create))
using (var doc = new Document())
using (var new_pdf = new PdfCopy(doc, stream))
{
doc.Open();
// Identify correct index
if (index < 0)
index = reader_to.NumberOfPages + 1;
// Copy all the pages before the desired index
var pages_appended = 0;
for (var i = 1; i < index && i <= reader_to.NumberOfPages; i++)
{
var page = new_pdf.GetImportedPage(reader_to, i);
new_pdf.AddPage(page);
}
for (var i = 1; i <= reader_from.NumberOfPages; i++)
{
var page = new_pdf.GetImportedPage(reader_from, i);
new_pdf.AddPage(page);
}
for (var i = index; i <= reader_to.NumberOfPages; i++)
{
var page = new_pdf.GetImportedPage(reader_to, i);
new_pdf.AddPage(page);
}
}
if (File.Exists(path_file_temp))
{
File.Delete(pathFileTo);
File.Move(path_file_temp, pathFileTo);
}
}
public override int SplitToPages(string pathFile, string folder = null)
{
// Determine name, use default if necessary
if (string.IsNullOrEmpty(folder))
folder = pathFile + @"_Pages\";
if (!Directory.Exists(folder))
Directory.CreateDirectory(folder);
using (var reader = new PdfReader(pathFile))
{
var count_pages = reader.NumberOfPages;
int current_page;
for (current_page = 0; current_page < count_pages; current_page ++)
{
var path_file_to =
Path.Combine(
folder,
string.Format("{0}{1:D3}{2}", PrefixPage, current_page, DefaultExtension)
);
using (var stream = new FileStream(path_file_to, FileMode.Create))
using (var doc = new Document())
using (var pdf = new PdfCopy(doc, stream))
{
doc.Open();
var page = pdf.GetImportedPage(reader, current_page + 1);
pdf.AddPage(page);
pdf.FreeReader(reader);
}
}
return current_page;
}
}
public override void BindDir(string fileNameTo, string pathDir, string searchPattern)
{
var l_files = Directory.GetFiles(pathDir, searchPattern);
Create(fileNameTo, l_files);
}
}
}