-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjbig2topdf.py
executable file
·277 lines (220 loc) · 7.97 KB
/
jbig2topdf.py
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#!/usr/bin/env python3
# Copyright 2006 Google Inc.
# Author: [email protected] (Adam Langley)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# JBIG2 Encoder
# https://github.com/agl/jbig2enc
import glob
import struct
import sys
from pathlib import Path
# This is a very simple script to make a PDF file out of the output of a
# multipage symbol compression.
# Run ./jbig2 -s -p <other options> image1.jpeg image1.jpeg ...
# python jbig2topdf.py output > out.pdf
dpi = 72 # Default DPI value
class Ref:
def __init__(self, x: int):
self.x = x
def __str__(self) -> str:
return f"{self.x} 0 R"
class Dict:
def __init__(self, values: dict = None):
if values is None:
values = {}
self.d = values.copy()
def __str__(self) -> str:
entries = [f"/{key} {value}" for key, value in self.d.items()]
return f"<< {' '.join(entries)} >>\n"
class Obj:
next_id = 1
def __init__(self, d: dict = None, stream: str = None):
if d is None:
d = {}
if stream is not None:
d["Length"] = str(len(stream))
self.d = Dict(d)
self.stream = stream
self.id = Obj.next_id
Obj.next_id += 1
def __str__(self) -> str:
result = [str(self.d)]
if self.stream is not None:
result.append(f"stream\n{self.stream}\nendstream\n")
result.append("endobj\n")
return "".join(result)
class Doc:
def __init__(self):
self.objs = []
self.pages = []
def add_object(self, obj: Obj) -> Obj:
"""Adds an object to the document."""
self.objs.append(obj)
return obj
def add_page(self, page: Obj) -> Obj:
"""Adds a page to the document and the list of objects."""
self.pages.append(page)
return self.add_object(page)
def __str__(self) -> str:
output = []
offsets = []
current_offset = 0
def add_line(line: str):
nonlocal current_offset
output.append(line)
current_offset += len(line) + 1 # Adding 1 for the newline character
# PDF header
add_line("%PDF-1.4")
# Add each object and track its byte offset
for obj in self.objs:
offsets.append(current_offset)
add_line(f"{obj.id} 0 obj")
add_line(str(obj))
# Cross-reference table
xref_start = current_offset
add_line("xref")
add_line(f"0 {len(offsets) + 1}")
add_line("0000000000 65535 f ")
for offset in offsets:
add_line(f"{offset:010} 00000 n ")
# Trailer and EOF
add_line("trailer")
add_line(f"<< /Size {len(offsets) + 1}\n/Root 1 0 R >>")
add_line("startxref")
add_line(str(xref_start))
add_line("%%EOF")
return "\n".join(output)
def ref(x: int) -> str:
"""Creates a PDF reference string."""
return f"{x} 0 R"
def create_pdf(symboltable: str = "symboltable", pagefiles: list = None):
"""Creates a PDF document from a symbol table and a list of page files."""
pagefiles = pagefiles or glob.glob("page-*")
doc = Doc()
# Add catalog and outlines objects
catalog_obj = Obj({"Type": "/Catalog", "Outlines": ref(2), "Pages": ref(3)})
outlines_obj = Obj({"Type": "/Outlines", "Count": "0"})
pages_obj = Obj({"Type": "/Pages"})
doc.add_object(catalog_obj)
doc.add_object(outlines_obj)
doc.add_object(pages_obj)
# Read symbol table if it exists
symd = None
if symboltable:
try:
sym_file = Path(symboltable).read_bytes()
symd = doc.add_object(Obj({}, sym_file.decode("latin1")))
except IOError:
sys.stderr.write(f"Error reading symbol table: {symboltable}\n")
return
page_objs = []
pagefiles.sort()
for p in pagefiles:
try:
contents = Path(p).read_bytes()
except IOError:
sys.stderr.write(f"Error reading page file: {p}\n")
continue
try:
width, height, xres, yres = struct.unpack(">IIII", contents[11:27])
except struct.error:
sys.stderr.write(f"Error unpacking page file: {p}\n")
continue
# Set default resolution if missing
xres = xres or dpi
yres = yres or dpi
# Create XObject (image) for the page
lexicon = {
"Type": "/XObject",
"Subtype": "/Image",
"Width": str(width),
"Height": str(height),
"ColorSpace": "/DeviceGray",
"BitsPerComponent": "1",
"Filter": "/JBIG2Decode",
}
if symd:
lexicon["DecodeParms"] = f"<< /JBIG2Globals {symd.id} 0 R >>"
xobj = Obj(
lexicon,
contents.decode("latin1"),
)
# Create content stream for the page
contents_obj = Obj(
{},
f"q {float(width * 72) / xres} 0 0 {float(height * 72) / yres} 0 0 cm /Im1 Do Q",
)
# Create resource dictionary for the page
resources_obj = Obj(
{"ProcSet": "[/PDF /ImageB]", "XObject": f"<< /Im1 {xobj.id} 0 R >>"}
)
# Create the page object
page_obj = Obj(
{
"Type": "/Page",
"Parent": "3 0 R",
"MediaBox": f"[ 0 0 {float(width * 72) / xres} {float(height * 72) / yres} ]",
"Contents": ref(contents_obj.id),
"Resources": ref(resources_obj.id),
}
)
# Add objects to the document
for obj in (xobj, contents_obj, resources_obj, page_obj):
doc.add_object(obj)
page_objs.append(page_obj)
# Update pages object
pages_obj.d.d["Count"] = str(len(page_objs))
pages_obj.d.d["Kids"] = "[" + " ".join([ref(x.id) for x in page_objs]) + "]"
# Output the final PDF document to stdout
sys.stdout.buffer.write(str(doc).encode("latin1"))
def usage(script, msg):
"""Display usage information and an optional error message."""
if msg:
sys.stderr.write(f"{script}: {msg}\n")
sys.stderr.write(f"""
Usage:
{script} [basename] > out.pdf
{script} -s [page.jb2]... > out.pdf
Read symbol table from `basename.sym` and pages from `basename.[0-9]*`
if basename not given: symbol table from `symboltable`, pages from `page-*`
-s: standalone mode (no global symbol table)
""")
sys.exit(1)
def validate_file_exists(file_path: str, script: str, error_msg: str) -> None:
"""Validates that a file exists, otherwise exits with usage error."""
if not Path(file_path).exists():
usage(script, error_msg)
def parse_args(script: str) -> tuple:
"""Parses command-line arguments and returns the symbol table and page files."""
if "-s" in sys.argv:
# Standalone mode, no global symbol table
pages = [arg for arg in sys.argv[1:] if arg != "-s"]
return "", pages
elif len(sys.argv) == 2:
base_name = sys.argv[1]
sym = f"{base_name}.sym"
pages = glob.glob(f"{base_name}.[0-9]*")
elif len(sys.argv) == 1:
sym = "symboltable"
pages = glob.glob("page-*")
else:
usage(script, "wrong number of arguments!")
# Validate that the symbol table and pages exist
validate_file_exists(sym, script, f"symbol table '{sym}' not found!")
if not pages:
usage(script, "no pages found!")
return sym, pages
if __name__ == "__main__":
sym, pages = parse_args(sys.argv[0])
create_pdf(sym, pages)