forked from dmitrylukin/lunPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpdfsplit.lua
202 lines (186 loc) · 6.88 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
-------------------------------------
--@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
PdfFile = {}
PdfFile.Trailer = nil
PdfFile.NumPages = nil
PdfFile.Structure = {}
PdfFile.Offset = {}
PdfFile.Stream = {}
PdfFile.ObjectCounter = 0
PdfFile.RootObject = 0
PdfFile.PagesObject = 0
PdfFile.PagesKids = {}
PdfFile.Resources = {}
PdfFile.ImagesObjects = {}
PdfFile.Read = function(filename)
local fh = assert(io.input(filename))
return fh
end
PdfFile.Parse = function(fh)
local structure = {}
while true do
local line = io.read()
if line == nil or line == "%%EOF" then break end
local n, sn = line:match("(%d+)%s+(%d+)%s+obj")
if n then
local isObject = true
PdfFile.ObjectCounter = PdfFile.ObjectCounter + 1
n = tonumber(n)
structure[n] = ""
-- if debug then print("Found Object "..n) end
while isObject do
line = io.read()
if line == nil then break end
if not line:match("endobj") then
if line:match("^stream") then
local StartStreamPos = io.input():seek()
while true do
if io.read():match("endstream") then break end
end
local StopStreamPos = io.input():seek() - 9
local binfh = io.open(arg[1], "rb")
binfh:seek("set", StartStreamPos)
PdfFile.Stream[n] = binfh:read(StopStreamPos - StartStreamPos - 1)
binfh:close()
end
structure[n] = structure[n]..line.."\n"
else
isObject = false
end
end
-- if debug then print(structure[n]) end
end -- end if obj found
if line:match("trailer") then
trailer = ""
while true do
line = io.read()
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 = line:match(i) or ""
if trout ~= "" then trout = trout.."\n" end
trailer = trailer..trout
end
if line:match(">>") then
break
end
end
end
end -- main loop
return trailer, structure
end
fh = PdfFile.Read(arg[1])
PdfFile.Trailer, PdfFile.Structure = PdfFile.Parse(fh)
-- if debug then print("Trailer: "..PdfFile.Trailer) end
-----------------------
-- Get root catalog
PdfFile.RootObject = PdfFile.Trailer:match("/Root%s+(%d+)%s+%d+")
if debug then print("RootCatalog object: "..PdfFile.RootObject) end
-----------------------
-- Get page number
PdfFile.RootObject = tonumber(PdfFile.RootObject)
PdfFile.PagesObject = PdfFile.Structure[PdfFile.RootObject]:match("/Pages%s(%d+)%s%d%sR")
if debug then print("Pages object: "..PdfFile.PagesObject) end
PdfFile.PagesObject = tonumber(PdfFile.PagesObject)
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 files
for pageCounter = 1, PdfFile.NumPages do
-- create filename
local fname = arg[1]:match("(%a+).pdf")
fname = fname.."-"..pageCounter..".pdf"
local wfh=io.open(fname,"wb")
---------------------------------------
-- Creating output PdfFile
local PdfFile2Write = copyTable(PdfFile)
-- Write /Count 1 to Pages obj
local a = PdfFile.Structure[PdfFile.PagesObject]:gsub("/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
local tmp = PdfFile2Write.Structure[tonumber(key)]:gsub("\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
-- removeUnnecessary(PdfFile2Write, unnecessaryList)
---------------------------------------
-- Forming page
-- write header
wfh:write("%PDF-1.3\n")
wfh:write("%\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] = wfh:seek()
wfh:write(i.." 0 obj\n")
wfh:write(PdfFile2Write.Structure[i])
if PdfFile2Write.Stream[i] ~=nil then
wfh:seek("end")
wfh:write(PdfFile2Write.Stream[i])
wfh:write("endstream\n")
end
wfh:write("endobj\n\n")
end -- end if test unnecessaty
end
-- write trailer
local xferOffset = wfh:seek()
wfh:write("xref\n")
wfh:write("0 "..tostring(PdfFile2Write.ObjectCounter + 1).."\n")
wfh:write("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])
wfh:write(o.." 00000 n\n")
end
end
wfh:write("trailer\n<<\n")
wfh:write(PdfFile2Write.Trailer..">>\n")
-- write footer
wfh:write("startxref\n"..xferOffset.."\n")
wfh:write("%%EOF\n")
wfh:close()
end -- end write file loop