-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfsplit.lua
237 lines (211 loc) · 8.28 KB
/
pdfsplit.lua
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
-------------------------------------
--@author [email protected]
debug = true
local function testUnnecessary(tab, element, list)
for i,v in pairs(list) do
if tonumber(v) == tonumber(element) then
return true
end
end
return false
end
local function copyTable(original)
local copy = {}
for k, v in pairs(original) do
if type(v) == 'table' then
v = copyTable(v)
end
copy[k] = v
end
return copy
end
local function toString(tab)
local str = ""
if type(tab) ~= 'table' then
return tab
end
for k, v in pairs(tab) do
if type(v) == 'table' then
v = toString(v)
end
str = str..v
end
return str
end
local function getNextBinaryChar(stream, pos)
return stream:sub(pos, pos)
end
local function getItNum(tab, regexp)
if type(tab) ~= 'table' then return tonumber(tab:match(regexp)) end
for _, v in pairs(tab) do
res = v:match(regexp)
if res then return tonumber(res) end
end
return nil
end
local function changeItString(tab, from, to)
local tmp = ""
if type(tab) ~= 'table' then tmp = tab:gsub(from, to)
else
for _, v in pairs(tab) do
tmp = tmp..v:gsub(from, to)
end
end
return tmp:gsub("\n","")
end
PdfFile = {}
PdfFile.Trailer = nil
PdfFile.NumPages = nil
PdfFile.ObjectCounter = 0
PdfFile.RootObject = 0
PdfFile.PagesObject = 0
PdfFile.Structure = {}
PdfFile.Offset = {}
PdfFile.PagesKids = {}
PdfFile.Resources = {}
PdfFile.Parse = function(blob)
local temporaryTable = {}
local structure = {}
-------------------------------------------
-- Fill temporary table with blob content
local currentLine = 1
temporaryTable[currentLine] = ""
for currentChar = 1, #blob do
char = getNextBinaryChar(blob, currentChar)
temporaryTable[currentLine] = temporaryTable[currentLine]..char
if char == "\n" then
currentLine = currentLine + 1
temporaryTable[currentLine] = ""
end
end
if debug then print("Number of lines in temporary table: "..table.getn(temporaryTable)) end
for currentLine = 1, table.getn(temporaryTable) do
if temporaryTable[currentLine]:match("%%EOF") then
if debug then print("Got EOF :"..temporaryTable[currentLine]) end
break
end
local n, sn = temporaryTable[currentLine]:match("(%d+)%s+(%d+)%s+obj")
if n then
currentLine = currentLine + 1
local isObject = true
PdfFile.ObjectCounter = PdfFile.ObjectCounter + 1
if debug then print("Found Object "..n) end
n = tonumber(n)
structure[n] = ""
while isObject do
if not temporaryTable[currentLine]:match("endobj") then
structure[n] = structure[n]..temporaryTable[currentLine]
else
isObject = false
end -- end if endobj
currentLine = currentLine + 1
end -- end while isObject
end -- end if obj found
if temporaryTable[currentLine]:match("trailer") then
trailer = ""
while true do
local tline = temporaryTable[currentLine]:gsub("\n","")
trsubst = {"(/Size%s%d+)", "(/Root%s+%d+%s+%d+%s+R)", "(/Info%s+%d+%s+%d+%s+R)", }
for _, i in pairs(trsubst) do
local trout = temporaryTable[currentLine]:match(i) or ""
if trout ~= "" then trout = trout.."\n" end
trailer = trailer..trout
end
if temporaryTable[currentLine]:match(">>") then
break
end
currentLine = currentLine + 1
end
end
end -- main loop
return trailer, structure
end
function split(pdf)
if debug then print("Blob size: "..#pdf.." bytes") end
PdfFile.Trailer, PdfFile.Structure = PdfFile.Parse(pdf)
-----------------------
-- Get root catalog
PdfFile.RootObject = tonumber(PdfFile.Trailer:match("/Root%s+(%d+)%s+%d+"))
if debug then print("RootCatalog object: "..PdfFile.RootObject) end
-----------------------
-- Get root page number
PdfFile.PagesObject = getItNum(PdfFile.Structure[PdfFile.RootObject],"/Pages%s(%d+)%s%d%sR")
if debug then print("Pages object: "..PdfFile.PagesObject) end
PdfFile.NumPages = PdfFile.Structure[PdfFile.PagesObject]:match("/Count%s(%d+)")
if debug then print("Number of pages in pdf: "..PdfFile.NumPages) end
PdfFile.NumPages = tonumber(PdfFile.NumPages)
if PdfFile.NumPages == 1 then
print("There is one page pdf document. No changes needed.")
return 0
end
---------------------------
-- Create output blobs
local outputBlob = {}
for pageCounter = 1, PdfFile.NumPages do
local outputBlobIDX = pageCounter
---------------------------------------
-- Creating output PdfFile
local PdfFile2Write = copyTable(PdfFile)
-- Write /Count 1 to Pages obj
local a = changeItString(PdfFile.Structure[PdfFile.PagesObject], "/Count%s+%d+", "/Count 1")
PdfFile2Write.Structure[PdfFile2Write.PagesObject] = a
--
local tmp = PdfFile2Write.Structure[PdfFile2Write.PagesObject]:gsub("\n","")
local b = tmp:match("/Kids%s*%[(.+)%]") -- b ia a list of Kids in form "12 0 R 2 0 R 7 0 R" and so
local kids = b
for k = 1, pageCounter - 1 do
b = b:gsub("^%s*%d+%s+%d+%s+%a+", " ", 1) -- b is a
end
PdfFile.PagesKids[pageCounter] = b:match("^%s*(%d+)%s+0%s+R")
--
z = tmp:gsub("/Kids%s*%[(.+)%]", "/Kids[ "..PdfFile.PagesKids[pageCounter].." 0 R ]")
PdfFile2Write.Structure[PdfFile2Write.PagesObject] = z
--------------------------------------
-- Try to remove unused objects
unnecessaryList = {}
while true do
key, tail = kids:match("^%s*(%w+)%s+(.*)$")
if not key then break end
if not ( key == "0" or key == "R" or tonumber(key) == tonumber(PdfFile.PagesKids[pageCounter]) ) then -- Find valuable numbers
local tmp = changeItString(PdfFile2Write.Structure[tonumber(key)],"\n","")
local page = tmp:match("/Resources%s+(%d+)%s+%d+%s+R")
local imgPage = PdfFile2Write.Structure[tonumber(page)]:gsub("\n", " ")
local imgObj = imgPage:match("/Im0%s+(%d+)%s+%d+%s+R")
table.insert(unnecessaryList, imgObj)
end
kids = tail
end
---------------------------------------
-- Forming output pdf page
outputBlob[outputBlobIDX] = ""
-- write header
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."%PDF-1.3\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."%\208\206\165\178\n"
-- write objects
for i,data in pairs(PdfFile2Write.Structure) do
if not testUnnecessary(PdfFile2Write, i, unnecessaryList) then
PdfFile2Write.Offset[i] = #outputBlob[outputBlobIDX]
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX]..i.." 0 obj\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX]..toString(PdfFile2Write.Structure[i])
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."endobj\n"
end -- end if test unnecessaty
end -- for loop
-- write trailer
local xferOffset = #outputBlob[outputBlobIDX]
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."xref\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX],"0 "..tostring(PdfFile2Write.ObjectCounter + 1).."\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."0000000000 65535 f\n"
for i in pairs(PdfFile2Write.Structure) do
if not testUnnecessary(PdfFile2Write, i, unnecessaryList) then
o = string.format("%010d", PdfFile2Write.Offset[i])
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX]..o.." 00000 n\n"
end
end
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."trailer\n<<\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX]..toString(PdfFile2Write.Trailer)..">>\n"
-- write footer
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."startxref\n"..xferOffset.."\n"
outputBlob[outputBlobIDX] = outputBlob[outputBlobIDX].."%%EOF\n"
end -- end write file loop
return outputBlob
end -- end split (main) function