hexapdf 1.9.1 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +55 -0
- data/lib/hexapdf/cli/command.rb +1 -2
- data/lib/hexapdf/configuration.rb +2 -2
- data/lib/hexapdf/content/canvas.rb +2 -2
- data/lib/hexapdf/content/smart_text_extractor.rb +3 -2
- data/lib/hexapdf/dictionary_fields.rb +7 -0
- data/lib/hexapdf/digital_signature/cms_handler.rb +27 -2
- data/lib/hexapdf/digital_signature/pkcs1_handler.rb +5 -0
- data/lib/hexapdf/digital_signature/signatures.rb +105 -0
- data/lib/hexapdf/digital_signature/signing/signed_data_creator.rb +0 -2
- data/lib/hexapdf/document.rb +2 -2
- data/lib/hexapdf/encryption/security_handler.rb +3 -1
- data/lib/hexapdf/layout/style.rb +2 -2
- data/lib/hexapdf/layout/text_fragment.rb +5 -1
- data/lib/hexapdf/layout/text_shaper.rb +1 -57
- data/lib/hexapdf/parser.rb +1 -2
- data/lib/hexapdf/serializer.rb +1 -1
- data/lib/hexapdf/task/import_pages.rb +41 -9
- data/lib/hexapdf/type/acro_form/appearance_generator.rb +1 -1
- data/lib/hexapdf/type/acro_form/choice_field.rb +3 -1
- data/lib/hexapdf/type/acro_form/field.rb +1 -1
- data/lib/hexapdf/type/catalog.rb +8 -1
- data/lib/hexapdf/type/document_security_store.rb +81 -13
- data/lib/hexapdf/type/font_type0.rb +1 -1
- data/lib/hexapdf/version.rb +1 -1
- data/test/hexapdf/content/test_canvas.rb +3 -3
- data/test/hexapdf/content/test_smart_text_extractor.rb +7 -0
- data/test/hexapdf/digital_signature/common.rb +209 -2
- data/test/hexapdf/digital_signature/test_cms_handler.rb +4 -2
- data/test/hexapdf/digital_signature/test_pkcs1_handler.rb +4 -0
- data/test/hexapdf/digital_signature/test_signatures.rb +131 -0
- data/test/hexapdf/encryption/test_security_handler.rb +12 -0
- data/test/hexapdf/layout/test_style.rb +3 -1
- data/test/hexapdf/layout/test_text_fragment.rb +11 -4
- data/test/hexapdf/task/test_import_pages.rb +42 -1
- data/test/hexapdf/test_dictionary_fields.rb +8 -0
- data/test/hexapdf/test_parser.rb +25 -9
- data/test/hexapdf/test_serializer.rb +7 -1
- data/test/hexapdf/type/acro_form/test_appearance_generator.rb +1 -1
- data/test/hexapdf/type/acro_form/test_choice_field.rb +5 -0
- data/test/hexapdf/type/acro_form/test_field.rb +3 -1
- data/test/hexapdf/type/test_catalog.rb +10 -0
- data/test/hexapdf/type/test_document_security_store.rb +120 -0
- data/test/test_helper.rb +7 -3
- metadata +939 -904
metadata
CHANGED
|
@@ -1,931 +1,966 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hexapdf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Thomas Leitner
|
|
7
|
+
- Thomas Leitner
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
|
-
- !ruby/object:Gem::Dependency
|
|
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
|
-
- !ruby/object:Gem::
|
|
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
|
-
- !ruby/object:Gem::Dependency
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
- !ruby/object:Gem::
|
|
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
|
-
- !ruby/object:Gem::
|
|
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
|
-
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: cmdparse
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
-
|
|
17
|
+
- ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: "3.0"
|
|
20
|
+
-
|
|
21
|
+
- ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 3.0.3
|
|
24
|
+
type: :runtime
|
|
25
|
+
prerelease: false
|
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
27
|
+
requirements:
|
|
28
|
+
-
|
|
29
|
+
- ~>
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: "3.0"
|
|
32
|
+
-
|
|
33
|
+
- ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 3.0.3
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: geom2d
|
|
38
|
+
requirement: !ruby/object:Gem::Requirement
|
|
39
|
+
requirements:
|
|
40
|
+
-
|
|
41
|
+
- ~>
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: "0.4"
|
|
44
|
+
-
|
|
45
|
+
- ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.4.1
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
-
|
|
53
|
+
- ~>
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: "0.4"
|
|
56
|
+
-
|
|
57
|
+
- ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: 0.4.1
|
|
60
|
+
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: openssl
|
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
-
|
|
65
|
+
- ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 2.2.1
|
|
68
|
+
type: :runtime
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
-
|
|
73
|
+
- ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 2.2.1
|
|
76
|
+
- !ruby/object:Gem::Dependency
|
|
77
|
+
name: strscan
|
|
78
|
+
requirement: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
-
|
|
81
|
+
- ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: 3.1.2
|
|
84
|
+
type: :runtime
|
|
85
|
+
prerelease: false
|
|
86
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
87
|
+
requirements:
|
|
88
|
+
-
|
|
89
|
+
- ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
version: 3.1.2
|
|
92
|
+
- !ruby/object:Gem::Dependency
|
|
93
|
+
name: harfbuzz-ruby
|
|
94
|
+
requirement: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
-
|
|
97
|
+
- ~>
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: "1.1"
|
|
100
|
+
type: :development
|
|
101
|
+
prerelease: false
|
|
102
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
103
|
+
requirements:
|
|
104
|
+
-
|
|
105
|
+
- ~>
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: "1.1"
|
|
108
|
+
- !ruby/object:Gem::Dependency
|
|
109
|
+
name: brotli
|
|
110
|
+
requirement: !ruby/object:Gem::Requirement
|
|
111
|
+
requirements:
|
|
112
|
+
-
|
|
113
|
+
- ~>
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: "0.7"
|
|
116
|
+
type: :development
|
|
117
|
+
prerelease: false
|
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
119
|
+
requirements:
|
|
120
|
+
-
|
|
121
|
+
- ~>
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: "0.7"
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: kramdown
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
-
|
|
129
|
+
- ~>
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: "2.3"
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
-
|
|
137
|
+
- ~>
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: "2.3"
|
|
140
|
+
- !ruby/object:Gem::Dependency
|
|
141
|
+
name: minitest
|
|
142
|
+
requirement: !ruby/object:Gem::Requirement
|
|
143
|
+
requirements:
|
|
144
|
+
-
|
|
145
|
+
- ~>
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
147
|
+
version: "6.0"
|
|
148
|
+
type: :development
|
|
149
|
+
prerelease: false
|
|
150
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
151
|
+
requirements:
|
|
152
|
+
-
|
|
153
|
+
- ~>
|
|
154
|
+
- !ruby/object:Gem::Version
|
|
155
|
+
version: "6.0"
|
|
156
|
+
- !ruby/object:Gem::Dependency
|
|
157
|
+
name: minitest-mock
|
|
158
|
+
requirement: !ruby/object:Gem::Requirement
|
|
159
|
+
requirements:
|
|
160
|
+
-
|
|
161
|
+
- ~>
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: "5.27"
|
|
164
|
+
type: :development
|
|
165
|
+
prerelease: false
|
|
166
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
167
|
+
requirements:
|
|
168
|
+
-
|
|
169
|
+
- ~>
|
|
170
|
+
- !ruby/object:Gem::Version
|
|
171
|
+
version: "5.27"
|
|
172
|
+
- !ruby/object:Gem::Dependency
|
|
173
|
+
name: reline
|
|
174
|
+
requirement: !ruby/object:Gem::Requirement
|
|
175
|
+
requirements:
|
|
176
|
+
-
|
|
177
|
+
- ~>
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: "0.1"
|
|
180
|
+
type: :development
|
|
181
|
+
prerelease: false
|
|
182
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
-
|
|
185
|
+
- ~>
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: "0.1"
|
|
188
|
+
- !ruby/object:Gem::Dependency
|
|
189
|
+
name: rubocop
|
|
190
|
+
requirement: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
-
|
|
193
|
+
- ~>
|
|
194
|
+
- !ruby/object:Gem::Version
|
|
195
|
+
version: "1.0"
|
|
196
|
+
type: :development
|
|
197
|
+
prerelease: false
|
|
198
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
199
|
+
requirements:
|
|
200
|
+
-
|
|
201
|
+
- ~>
|
|
202
|
+
- !ruby/object:Gem::Version
|
|
203
|
+
version: "1.0"
|
|
204
|
+
- !ruby/object:Gem::Dependency
|
|
205
|
+
name: webrick
|
|
206
|
+
requirement: !ruby/object:Gem::Requirement
|
|
207
|
+
requirements:
|
|
208
|
+
-
|
|
209
|
+
- ">="
|
|
210
|
+
- !ruby/object:Gem::Version
|
|
211
|
+
version: "0"
|
|
212
|
+
type: :development
|
|
213
|
+
prerelease: false
|
|
214
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
215
|
+
requirements:
|
|
216
|
+
-
|
|
217
|
+
- ">="
|
|
218
|
+
- !ruby/object:Gem::Version
|
|
219
|
+
version: "0"
|
|
220
|
+
- !ruby/object:Gem::Dependency
|
|
221
|
+
name: rake
|
|
222
|
+
requirement: !ruby/object:Gem::Requirement
|
|
223
|
+
requirements:
|
|
224
|
+
-
|
|
225
|
+
- ">="
|
|
226
|
+
- !ruby/object:Gem::Version
|
|
227
|
+
version: "0"
|
|
228
|
+
type: :development
|
|
229
|
+
prerelease: false
|
|
230
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
231
|
+
requirements:
|
|
232
|
+
-
|
|
233
|
+
- ">="
|
|
234
|
+
- !ruby/object:Gem::Version
|
|
235
|
+
version: "0"
|
|
236
|
+
- !ruby/object:Gem::Dependency
|
|
237
|
+
name: simplecov
|
|
238
|
+
requirement: !ruby/object:Gem::Requirement
|
|
239
|
+
requirements:
|
|
240
|
+
-
|
|
241
|
+
- ~>
|
|
242
|
+
- !ruby/object:Gem::Version
|
|
243
|
+
version: "1.0"
|
|
244
|
+
type: :development
|
|
245
|
+
prerelease: false
|
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
247
|
+
requirements:
|
|
248
|
+
-
|
|
249
|
+
- ~>
|
|
250
|
+
- !ruby/object:Gem::Version
|
|
251
|
+
version: "1.0"
|
|
220
252
|
description: |
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
253
|
+
HexaPDF is a pure Ruby library with an accompanying application for working with PDF
|
|
254
|
+
files.
|
|
255
|
+
|
|
256
|
+
In short, it allows creating new PDF files, manipulating existing PDF files, merging multiple
|
|
257
|
+
PDF files into one, extracting meta information, text, images and files from PDF files, securing
|
|
258
|
+
PDF files by encrypting them and optimizing PDF files for smaller file size or other
|
|
259
|
+
criteria.
|
|
260
|
+
|
|
261
|
+
HexaPDF was designed with ease of use and performance in mind. It uses lazy loading and lazy
|
|
262
|
+
computing when possible and tries to produce small PDF files by default.
|
|
231
263
|
email: t_leitner@gmx.at
|
|
232
264
|
executables:
|
|
233
|
-
- hexapdf
|
|
265
|
+
- hexapdf
|
|
234
266
|
extensions: []
|
|
235
267
|
extra_rdoc_files: []
|
|
236
268
|
files:
|
|
237
|
-
- CHANGELOG.md
|
|
238
|
-
- LICENSE
|
|
239
|
-
- README.md
|
|
240
|
-
- Rakefile
|
|
241
|
-
- agpl-3.0.txt
|
|
242
|
-
- bin/hexapdf
|
|
243
|
-
- data/hexapdf/afm/Courier-Bold.afm
|
|
244
|
-
- data/hexapdf/afm/Courier-BoldOblique.afm
|
|
245
|
-
- data/hexapdf/afm/Courier-Oblique.afm
|
|
246
|
-
- data/hexapdf/afm/Courier.afm
|
|
247
|
-
- data/hexapdf/afm/Helvetica-Bold.afm
|
|
248
|
-
- data/hexapdf/afm/Helvetica-BoldOblique.afm
|
|
249
|
-
- data/hexapdf/afm/Helvetica-Oblique.afm
|
|
250
|
-
- data/hexapdf/afm/Helvetica.afm
|
|
251
|
-
- data/hexapdf/afm/MustRead.html
|
|
252
|
-
- data/hexapdf/afm/Symbol.afm
|
|
253
|
-
- data/hexapdf/afm/Times-Bold.afm
|
|
254
|
-
- data/hexapdf/afm/Times-BoldItalic.afm
|
|
255
|
-
- data/hexapdf/afm/Times-Italic.afm
|
|
256
|
-
- data/hexapdf/afm/Times-Roman.afm
|
|
257
|
-
- data/hexapdf/afm/ZapfDingbats.afm
|
|
258
|
-
- data/hexapdf/cert/demo_cert.rb
|
|
259
|
-
- data/hexapdf/cert/root-ca.crt
|
|
260
|
-
- data/hexapdf/cert/signing.crt
|
|
261
|
-
- data/hexapdf/cert/signing.key
|
|
262
|
-
- data/hexapdf/cert/sub-ca.crt
|
|
263
|
-
- data/hexapdf/cmap/83pv-RKSJ-H
|
|
264
|
-
- data/hexapdf/cmap/90ms-RKSJ-H
|
|
265
|
-
- data/hexapdf/cmap/90ms-RKSJ-V
|
|
266
|
-
- data/hexapdf/cmap/90msp-RKSJ-H
|
|
267
|
-
- data/hexapdf/cmap/90msp-RKSJ-V
|
|
268
|
-
- data/hexapdf/cmap/90pv-RKSJ-H
|
|
269
|
-
- data/hexapdf/cmap/Add-RKSJ-H
|
|
270
|
-
- data/hexapdf/cmap/Add-RKSJ-V
|
|
271
|
-
- data/hexapdf/cmap/Adobe-CNS1-UCS2
|
|
272
|
-
- data/hexapdf/cmap/Adobe-GB1-UCS2
|
|
273
|
-
- data/hexapdf/cmap/Adobe-Japan1-UCS2
|
|
274
|
-
- data/hexapdf/cmap/Adobe-Korea1-UCS2
|
|
275
|
-
- data/hexapdf/cmap/B5pc-H
|
|
276
|
-
- data/hexapdf/cmap/B5pc-V
|
|
277
|
-
- data/hexapdf/cmap/CNS-EUC-H
|
|
278
|
-
- data/hexapdf/cmap/CNS-EUC-V
|
|
279
|
-
- data/hexapdf/cmap/ETen-B5-H
|
|
280
|
-
- data/hexapdf/cmap/ETen-B5-V
|
|
281
|
-
- data/hexapdf/cmap/ETenms-B5-H
|
|
282
|
-
- data/hexapdf/cmap/ETenms-B5-V
|
|
283
|
-
- data/hexapdf/cmap/EUC-H
|
|
284
|
-
- data/hexapdf/cmap/EUC-V
|
|
285
|
-
- data/hexapdf/cmap/Ext-RKSJ-H
|
|
286
|
-
- data/hexapdf/cmap/Ext-RKSJ-V
|
|
287
|
-
- data/hexapdf/cmap/GB-EUC-H
|
|
288
|
-
- data/hexapdf/cmap/GB-EUC-V
|
|
289
|
-
- data/hexapdf/cmap/GBK-EUC-H
|
|
290
|
-
- data/hexapdf/cmap/GBK-EUC-V
|
|
291
|
-
- data/hexapdf/cmap/GBK2K-H
|
|
292
|
-
- data/hexapdf/cmap/GBK2K-V
|
|
293
|
-
- data/hexapdf/cmap/GBKp-EUC-H
|
|
294
|
-
- data/hexapdf/cmap/GBKp-EUC-V
|
|
295
|
-
- data/hexapdf/cmap/GBpc-EUC-H
|
|
296
|
-
- data/hexapdf/cmap/GBpc-EUC-V
|
|
297
|
-
- data/hexapdf/cmap/H
|
|
298
|
-
- data/hexapdf/cmap/HKscs-B5-H
|
|
299
|
-
- data/hexapdf/cmap/HKscs-B5-V
|
|
300
|
-
- data/hexapdf/cmap/Identity-H
|
|
301
|
-
- data/hexapdf/cmap/Identity-V
|
|
302
|
-
- data/hexapdf/cmap/KSC-EUC-H
|
|
303
|
-
- data/hexapdf/cmap/KSC-EUC-V
|
|
304
|
-
- data/hexapdf/cmap/KSCms-UHC-H
|
|
305
|
-
- data/hexapdf/cmap/KSCms-UHC-HW-H
|
|
306
|
-
- data/hexapdf/cmap/KSCms-UHC-HW-V
|
|
307
|
-
- data/hexapdf/cmap/KSCms-UHC-V
|
|
308
|
-
- data/hexapdf/cmap/KSCpc-EUC-H
|
|
309
|
-
- data/hexapdf/cmap/LICENSE.txt
|
|
310
|
-
- data/hexapdf/cmap/README.txt
|
|
311
|
-
- data/hexapdf/cmap/UniCNS-UCS2-H
|
|
312
|
-
- data/hexapdf/cmap/UniCNS-UCS2-V
|
|
313
|
-
- data/hexapdf/cmap/UniCNS-UTF16-H
|
|
314
|
-
- data/hexapdf/cmap/UniCNS-UTF16-V
|
|
315
|
-
- data/hexapdf/cmap/UniGB-UCS2-H
|
|
316
|
-
- data/hexapdf/cmap/UniGB-UCS2-V
|
|
317
|
-
- data/hexapdf/cmap/UniGB-UTF16-H
|
|
318
|
-
- data/hexapdf/cmap/UniGB-UTF16-V
|
|
319
|
-
- data/hexapdf/cmap/UniJIS-UCS2-H
|
|
320
|
-
- data/hexapdf/cmap/UniJIS-UCS2-HW-H
|
|
321
|
-
- data/hexapdf/cmap/UniJIS-UCS2-HW-V
|
|
322
|
-
- data/hexapdf/cmap/UniJIS-UCS2-V
|
|
323
|
-
- data/hexapdf/cmap/UniJIS-UTF16-H
|
|
324
|
-
- data/hexapdf/cmap/UniJIS-UTF16-V
|
|
325
|
-
- data/hexapdf/cmap/UniKS-UCS2-H
|
|
326
|
-
- data/hexapdf/cmap/UniKS-UCS2-V
|
|
327
|
-
- data/hexapdf/cmap/UniKS-UTF16-H
|
|
328
|
-
- data/hexapdf/cmap/UniKS-UTF16-V
|
|
329
|
-
- data/hexapdf/cmap/V
|
|
330
|
-
- data/hexapdf/encoding/glyphlist.txt
|
|
331
|
-
- data/hexapdf/encoding/zapfdingbats.txt
|
|
332
|
-
- data/hexapdf/fonts/Inter-Bold.ttf
|
|
333
|
-
- data/hexapdf/fonts/Inter-BoldItalic.ttf
|
|
334
|
-
- data/hexapdf/fonts/Inter-Italic.ttf
|
|
335
|
-
- data/hexapdf/fonts/Inter-Regular.ttf
|
|
336
|
-
- data/hexapdf/fonts/OFL.txt
|
|
337
|
-
- data/hexapdf/sRGB2014.icc
|
|
338
|
-
- data/hexapdf/sRGB2014.icc.LICENSE
|
|
339
|
-
- examples/001-hello_world.rb
|
|
340
|
-
- examples/002-graphics.rb
|
|
341
|
-
- examples/003-arcs.rb
|
|
342
|
-
- examples/004-optimizing.rb
|
|
343
|
-
- examples/005-merging.rb
|
|
344
|
-
- examples/006-standard_pdf_fonts.rb
|
|
345
|
-
- examples/007-truetype.rb
|
|
346
|
-
- examples/008-show_char_bboxes.rb
|
|
347
|
-
- examples/009-text_layouter_alignment.rb
|
|
348
|
-
- examples/010-text_layouter_inline_boxes.rb
|
|
349
|
-
- examples/011-text_layouter_line_wrapping.rb
|
|
350
|
-
- examples/012-text_layouter_styling.rb
|
|
351
|
-
- examples/013-text_layouter_shapes.rb
|
|
352
|
-
- examples/014-text_in_polygon.rb
|
|
353
|
-
- examples/015-boxes.rb
|
|
354
|
-
- examples/016-frame_automatic_box_placement.rb
|
|
355
|
-
- examples/017-frame_text_flow.rb
|
|
356
|
-
- examples/018-composer.rb
|
|
357
|
-
- examples/019-acro_form.rb
|
|
358
|
-
- examples/020-column_box.rb
|
|
359
|
-
- examples/021-list_box.rb
|
|
360
|
-
- examples/022-outline.rb
|
|
361
|
-
- examples/023-images.rb
|
|
362
|
-
- examples/024-digital-signatures.rb
|
|
363
|
-
- examples/025-table_box.rb
|
|
364
|
-
- examples/026-optional_content.rb
|
|
365
|
-
- examples/027-composer_optional_content.rb
|
|
366
|
-
- examples/028-composer_mask_mode.rb
|
|
367
|
-
- examples/029-composer_fallback_fonts.rb
|
|
368
|
-
- examples/030-pdfa.rb
|
|
369
|
-
- examples/031-acro_form_java_script.rb
|
|
370
|
-
- examples/032-acro_form_list_and_fill.rb
|
|
371
|
-
- examples/033-text_extraction.rb
|
|
372
|
-
- examples/034-text_shaping.rb
|
|
373
|
-
- examples/emoji-smile.png
|
|
374
|
-
- examples/emoji-wink.png
|
|
375
|
-
- examples/machupicchu.jpg
|
|
376
|
-
- lib/hexapdf.rb
|
|
377
|
-
- lib/hexapdf/cli.rb
|
|
378
|
-
- lib/hexapdf/cli/batch.rb
|
|
379
|
-
- lib/hexapdf/cli/command.rb
|
|
380
|
-
- lib/hexapdf/cli/debug_info.rb
|
|
381
|
-
- lib/hexapdf/cli/files.rb
|
|
382
|
-
- lib/hexapdf/cli/fonts.rb
|
|
383
|
-
- lib/hexapdf/cli/form.rb
|
|
384
|
-
- lib/hexapdf/cli/image2pdf.rb
|
|
385
|
-
- lib/hexapdf/cli/images.rb
|
|
386
|
-
- lib/hexapdf/cli/info.rb
|
|
387
|
-
- lib/hexapdf/cli/inspect.rb
|
|
388
|
-
- lib/hexapdf/cli/merge.rb
|
|
389
|
-
- lib/hexapdf/cli/modify.rb
|
|
390
|
-
- lib/hexapdf/cli/optimize.rb
|
|
391
|
-
- lib/hexapdf/cli/split.rb
|
|
392
|
-
- lib/hexapdf/cli/usage.rb
|
|
393
|
-
- lib/hexapdf/cli/watermark.rb
|
|
394
|
-
- lib/hexapdf/composer.rb
|
|
395
|
-
- lib/hexapdf/configuration.rb
|
|
396
|
-
- lib/hexapdf/content.rb
|
|
397
|
-
- lib/hexapdf/content/canvas.rb
|
|
398
|
-
- lib/hexapdf/content/canvas_composer.rb
|
|
399
|
-
- lib/hexapdf/content/color_space.rb
|
|
400
|
-
- lib/hexapdf/content/graphic_object.rb
|
|
401
|
-
- lib/hexapdf/content/graphic_object/arc.rb
|
|
402
|
-
- lib/hexapdf/content/graphic_object/endpoint_arc.rb
|
|
403
|
-
- lib/hexapdf/content/graphic_object/geom2d.rb
|
|
404
|
-
- lib/hexapdf/content/graphic_object/solid_arc.rb
|
|
405
|
-
- lib/hexapdf/content/graphics_state.rb
|
|
406
|
-
- lib/hexapdf/content/operator.rb
|
|
407
|
-
- lib/hexapdf/content/parser.rb
|
|
408
|
-
- lib/hexapdf/content/processor.rb
|
|
409
|
-
- lib/hexapdf/content/smart_text_extractor.rb
|
|
410
|
-
- lib/hexapdf/content/transformation_matrix.rb
|
|
411
|
-
- lib/hexapdf/data_dir.rb
|
|
412
|
-
- lib/hexapdf/dictionary.rb
|
|
413
|
-
- lib/hexapdf/dictionary_fields.rb
|
|
414
|
-
- lib/hexapdf/digital_signature.rb
|
|
415
|
-
- lib/hexapdf/digital_signature/cms_handler.rb
|
|
416
|
-
- lib/hexapdf/digital_signature/handler.rb
|
|
417
|
-
- lib/hexapdf/digital_signature/pkcs1_handler.rb
|
|
418
|
-
- lib/hexapdf/digital_signature/signature.rb
|
|
419
|
-
- lib/hexapdf/digital_signature/signatures.rb
|
|
420
|
-
- lib/hexapdf/digital_signature/signing.rb
|
|
421
|
-
- lib/hexapdf/digital_signature/signing/default_handler.rb
|
|
422
|
-
- lib/hexapdf/digital_signature/signing/signed_data_creator.rb
|
|
423
|
-
- lib/hexapdf/digital_signature/signing/timestamp_handler.rb
|
|
424
|
-
- lib/hexapdf/digital_signature/verification_result.rb
|
|
425
|
-
- lib/hexapdf/document.rb
|
|
426
|
-
- lib/hexapdf/document/annotations.rb
|
|
427
|
-
- lib/hexapdf/document/destinations.rb
|
|
428
|
-
- lib/hexapdf/document/files.rb
|
|
429
|
-
- lib/hexapdf/document/fonts.rb
|
|
430
|
-
- lib/hexapdf/document/images.rb
|
|
431
|
-
- lib/hexapdf/document/layout.rb
|
|
432
|
-
- lib/hexapdf/document/metadata.rb
|
|
433
|
-
- lib/hexapdf/document/pages.rb
|
|
434
|
-
- lib/hexapdf/encryption.rb
|
|
435
|
-
- lib/hexapdf/encryption/aes.rb
|
|
436
|
-
- lib/hexapdf/encryption/arc4.rb
|
|
437
|
-
- lib/hexapdf/encryption/fast_aes.rb
|
|
438
|
-
- lib/hexapdf/encryption/fast_arc4.rb
|
|
439
|
-
- lib/hexapdf/encryption/identity.rb
|
|
440
|
-
- lib/hexapdf/encryption/ruby_aes.rb
|
|
441
|
-
- lib/hexapdf/encryption/ruby_arc4.rb
|
|
442
|
-
- lib/hexapdf/encryption/security_handler.rb
|
|
443
|
-
- lib/hexapdf/encryption/standard_security_handler.rb
|
|
444
|
-
- lib/hexapdf/error.rb
|
|
445
|
-
- lib/hexapdf/filter.rb
|
|
446
|
-
- lib/hexapdf/filter/ascii85_decode.rb
|
|
447
|
-
- lib/hexapdf/filter/ascii_hex_decode.rb
|
|
448
|
-
- lib/hexapdf/filter/brotli_decode.rb
|
|
449
|
-
- lib/hexapdf/filter/crypt.rb
|
|
450
|
-
- lib/hexapdf/filter/encryption.rb
|
|
451
|
-
- lib/hexapdf/filter/flate_decode.rb
|
|
452
|
-
- lib/hexapdf/filter/lzw_decode.rb
|
|
453
|
-
- lib/hexapdf/filter/pass_through.rb
|
|
454
|
-
- lib/hexapdf/filter/predictor.rb
|
|
455
|
-
- lib/hexapdf/filter/run_length_decode.rb
|
|
456
|
-
- lib/hexapdf/font/cmap.rb
|
|
457
|
-
- lib/hexapdf/font/cmap/parser.rb
|
|
458
|
-
- lib/hexapdf/font/cmap/writer.rb
|
|
459
|
-
- lib/hexapdf/font/encoding.rb
|
|
460
|
-
- lib/hexapdf/font/encoding/base.rb
|
|
461
|
-
- lib/hexapdf/font/encoding/difference_encoding.rb
|
|
462
|
-
- lib/hexapdf/font/encoding/glyph_list.rb
|
|
463
|
-
- lib/hexapdf/font/encoding/mac_expert_encoding.rb
|
|
464
|
-
- lib/hexapdf/font/encoding/mac_roman_encoding.rb
|
|
465
|
-
- lib/hexapdf/font/encoding/standard_encoding.rb
|
|
466
|
-
- lib/hexapdf/font/encoding/symbol_encoding.rb
|
|
467
|
-
- lib/hexapdf/font/encoding/win_ansi_encoding.rb
|
|
468
|
-
- lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb
|
|
469
|
-
- lib/hexapdf/font/invalid_glyph.rb
|
|
470
|
-
- lib/hexapdf/font/true_type.rb
|
|
471
|
-
- lib/hexapdf/font/true_type/builder.rb
|
|
472
|
-
- lib/hexapdf/font/true_type/font.rb
|
|
473
|
-
- lib/hexapdf/font/true_type/optimizer.rb
|
|
474
|
-
- lib/hexapdf/font/true_type/subsetter.rb
|
|
475
|
-
- lib/hexapdf/font/true_type/table.rb
|
|
476
|
-
- lib/hexapdf/font/true_type/table/cmap.rb
|
|
477
|
-
- lib/hexapdf/font/true_type/table/cmap_subtable.rb
|
|
478
|
-
- lib/hexapdf/font/true_type/table/directory.rb
|
|
479
|
-
- lib/hexapdf/font/true_type/table/glyf.rb
|
|
480
|
-
- lib/hexapdf/font/true_type/table/head.rb
|
|
481
|
-
- lib/hexapdf/font/true_type/table/hhea.rb
|
|
482
|
-
- lib/hexapdf/font/true_type/table/hmtx.rb
|
|
483
|
-
- lib/hexapdf/font/true_type/table/kern.rb
|
|
484
|
-
- lib/hexapdf/font/true_type/table/loca.rb
|
|
485
|
-
- lib/hexapdf/font/true_type/table/maxp.rb
|
|
486
|
-
- lib/hexapdf/font/true_type/table/name.rb
|
|
487
|
-
- lib/hexapdf/font/true_type/table/os2.rb
|
|
488
|
-
- lib/hexapdf/font/true_type/table/post.rb
|
|
489
|
-
- lib/hexapdf/font/true_type_wrapper.rb
|
|
490
|
-
- lib/hexapdf/font/type1.rb
|
|
491
|
-
- lib/hexapdf/font/type1/afm_parser.rb
|
|
492
|
-
- lib/hexapdf/font/type1/character_metrics.rb
|
|
493
|
-
- lib/hexapdf/font/type1/font.rb
|
|
494
|
-
- lib/hexapdf/font/type1/font_metrics.rb
|
|
495
|
-
- lib/hexapdf/font/type1/pfb_parser.rb
|
|
496
|
-
- lib/hexapdf/font/type1_wrapper.rb
|
|
497
|
-
- lib/hexapdf/font_loader.rb
|
|
498
|
-
- lib/hexapdf/font_loader/from_configuration.rb
|
|
499
|
-
- lib/hexapdf/font_loader/from_file.rb
|
|
500
|
-
- lib/hexapdf/font_loader/standard14.rb
|
|
501
|
-
- lib/hexapdf/font_loader/variant_from_name.rb
|
|
502
|
-
- lib/hexapdf/image_loader.rb
|
|
503
|
-
- lib/hexapdf/image_loader/jpeg.rb
|
|
504
|
-
- lib/hexapdf/image_loader/pdf.rb
|
|
505
|
-
- lib/hexapdf/image_loader/png.rb
|
|
506
|
-
- lib/hexapdf/importer.rb
|
|
507
|
-
- lib/hexapdf/layout.rb
|
|
508
|
-
- lib/hexapdf/layout/box.rb
|
|
509
|
-
- lib/hexapdf/layout/box_fitter.rb
|
|
510
|
-
- lib/hexapdf/layout/column_box.rb
|
|
511
|
-
- lib/hexapdf/layout/container_box.rb
|
|
512
|
-
- lib/hexapdf/layout/frame.rb
|
|
513
|
-
- lib/hexapdf/layout/image_box.rb
|
|
514
|
-
- lib/hexapdf/layout/inline_box.rb
|
|
515
|
-
- lib/hexapdf/layout/line.rb
|
|
516
|
-
- lib/hexapdf/layout/list_box.rb
|
|
517
|
-
- lib/hexapdf/layout/numeric_refinements.rb
|
|
518
|
-
- lib/hexapdf/layout/page_style.rb
|
|
519
|
-
- lib/hexapdf/layout/style.rb
|
|
520
|
-
- lib/hexapdf/layout/table_box.rb
|
|
521
|
-
- lib/hexapdf/layout/text_box.rb
|
|
522
|
-
- lib/hexapdf/layout/text_fragment.rb
|
|
523
|
-
- lib/hexapdf/layout/text_layouter.rb
|
|
524
|
-
- lib/hexapdf/layout/text_shaper.rb
|
|
525
|
-
- lib/hexapdf/layout/width_from_polygon.rb
|
|
526
|
-
- lib/hexapdf/name_tree_node.rb
|
|
527
|
-
- lib/hexapdf/number_tree_node.rb
|
|
528
|
-
- lib/hexapdf/object.rb
|
|
529
|
-
- lib/hexapdf/parser.rb
|
|
530
|
-
- lib/hexapdf/pdf_array.rb
|
|
531
|
-
- lib/hexapdf/rectangle.rb
|
|
532
|
-
- lib/hexapdf/reference.rb
|
|
533
|
-
- lib/hexapdf/revision.rb
|
|
534
|
-
- lib/hexapdf/revisions.rb
|
|
535
|
-
- lib/hexapdf/serializer.rb
|
|
536
|
-
- lib/hexapdf/stream.rb
|
|
537
|
-
- lib/hexapdf/task.rb
|
|
538
|
-
- lib/hexapdf/task/dereference.rb
|
|
539
|
-
- lib/hexapdf/task/import_pages.rb
|
|
540
|
-
- lib/hexapdf/task/merge_acro_form.rb
|
|
541
|
-
- lib/hexapdf/task/optimize.rb
|
|
542
|
-
- lib/hexapdf/task/pdfa.rb
|
|
543
|
-
- lib/hexapdf/test_utils.rb
|
|
544
|
-
- lib/hexapdf/tokenizer.rb
|
|
545
|
-
- lib/hexapdf/type.rb
|
|
546
|
-
- lib/hexapdf/type/acro_form.rb
|
|
547
|
-
- lib/hexapdf/type/acro_form/appearance_generator.rb
|
|
548
|
-
- lib/hexapdf/type/acro_form/button_field.rb
|
|
549
|
-
- lib/hexapdf/type/acro_form/choice_field.rb
|
|
550
|
-
- lib/hexapdf/type/acro_form/field.rb
|
|
551
|
-
- lib/hexapdf/type/acro_form/form.rb
|
|
552
|
-
- lib/hexapdf/type/acro_form/java_script_actions.rb
|
|
553
|
-
- lib/hexapdf/type/acro_form/signature_field.rb
|
|
554
|
-
- lib/hexapdf/type/acro_form/text_field.rb
|
|
555
|
-
- lib/hexapdf/type/acro_form/variable_text_field.rb
|
|
556
|
-
- lib/hexapdf/type/action.rb
|
|
557
|
-
- lib/hexapdf/type/actions.rb
|
|
558
|
-
- lib/hexapdf/type/actions/go_to.rb
|
|
559
|
-
- lib/hexapdf/type/actions/go_to_r.rb
|
|
560
|
-
- lib/hexapdf/type/actions/launch.rb
|
|
561
|
-
- lib/hexapdf/type/actions/set_ocg_state.rb
|
|
562
|
-
- lib/hexapdf/type/actions/uri.rb
|
|
563
|
-
- lib/hexapdf/type/annotation.rb
|
|
564
|
-
- lib/hexapdf/type/annotations.rb
|
|
565
|
-
- lib/hexapdf/type/annotations/appearance_generator.rb
|
|
566
|
-
- lib/hexapdf/type/annotations/border_effect.rb
|
|
567
|
-
- lib/hexapdf/type/annotations/border_styling.rb
|
|
568
|
-
- lib/hexapdf/type/annotations/circle.rb
|
|
569
|
-
- lib/hexapdf/type/annotations/ink.rb
|
|
570
|
-
- lib/hexapdf/type/annotations/interior_color.rb
|
|
571
|
-
- lib/hexapdf/type/annotations/line.rb
|
|
572
|
-
- lib/hexapdf/type/annotations/line_ending_styling.rb
|
|
573
|
-
- lib/hexapdf/type/annotations/link.rb
|
|
574
|
-
- lib/hexapdf/type/annotations/markup_annotation.rb
|
|
575
|
-
- lib/hexapdf/type/annotations/polygon.rb
|
|
576
|
-
- lib/hexapdf/type/annotations/polygon_polyline.rb
|
|
577
|
-
- lib/hexapdf/type/annotations/polyline.rb
|
|
578
|
-
- lib/hexapdf/type/annotations/square.rb
|
|
579
|
-
- lib/hexapdf/type/annotations/square_circle.rb
|
|
580
|
-
- lib/hexapdf/type/annotations/text.rb
|
|
581
|
-
- lib/hexapdf/type/annotations/widget.rb
|
|
582
|
-
- lib/hexapdf/type/catalog.rb
|
|
583
|
-
- lib/hexapdf/type/cid_font.rb
|
|
584
|
-
- lib/hexapdf/type/cmap.rb
|
|
585
|
-
- lib/hexapdf/type/document_security_store.rb
|
|
586
|
-
- lib/hexapdf/type/embedded_file.rb
|
|
587
|
-
- lib/hexapdf/type/file_specification.rb
|
|
588
|
-
- lib/hexapdf/type/font.rb
|
|
589
|
-
- lib/hexapdf/type/font_descriptor.rb
|
|
590
|
-
- lib/hexapdf/type/font_simple.rb
|
|
591
|
-
- lib/hexapdf/type/font_true_type.rb
|
|
592
|
-
- lib/hexapdf/type/font_type0.rb
|
|
593
|
-
- lib/hexapdf/type/font_type1.rb
|
|
594
|
-
- lib/hexapdf/type/font_type3.rb
|
|
595
|
-
- lib/hexapdf/type/form.rb
|
|
596
|
-
- lib/hexapdf/type/graphics_state_parameter.rb
|
|
597
|
-
- lib/hexapdf/type/icon_fit.rb
|
|
598
|
-
- lib/hexapdf/type/image.rb
|
|
599
|
-
- lib/hexapdf/type/info.rb
|
|
600
|
-
- lib/hexapdf/type/mark_information.rb
|
|
601
|
-
- lib/hexapdf/type/marked_content_reference.rb
|
|
602
|
-
- lib/hexapdf/type/measure.rb
|
|
603
|
-
- lib/hexapdf/type/metadata.rb
|
|
604
|
-
- lib/hexapdf/type/names.rb
|
|
605
|
-
- lib/hexapdf/type/namespace.rb
|
|
606
|
-
- lib/hexapdf/type/object_reference.rb
|
|
607
|
-
- lib/hexapdf/type/object_stream.rb
|
|
608
|
-
- lib/hexapdf/type/optional_content_configuration.rb
|
|
609
|
-
- lib/hexapdf/type/optional_content_group.rb
|
|
610
|
-
- lib/hexapdf/type/optional_content_membership.rb
|
|
611
|
-
- lib/hexapdf/type/optional_content_properties.rb
|
|
612
|
-
- lib/hexapdf/type/outline.rb
|
|
613
|
-
- lib/hexapdf/type/outline_item.rb
|
|
614
|
-
- lib/hexapdf/type/output_intent.rb
|
|
615
|
-
- lib/hexapdf/type/page.rb
|
|
616
|
-
- lib/hexapdf/type/page_label.rb
|
|
617
|
-
- lib/hexapdf/type/page_tree_node.rb
|
|
618
|
-
- lib/hexapdf/type/resources.rb
|
|
619
|
-
- lib/hexapdf/type/struct_elem.rb
|
|
620
|
-
- lib/hexapdf/type/struct_tree_root.rb
|
|
621
|
-
- lib/hexapdf/type/trailer.rb
|
|
622
|
-
- lib/hexapdf/type/viewer_preferences.rb
|
|
623
|
-
- lib/hexapdf/type/xref_stream.rb
|
|
624
|
-
- lib/hexapdf/utils.rb
|
|
625
|
-
- lib/hexapdf/utils/bit_field.rb
|
|
626
|
-
- lib/hexapdf/utils/bit_stream.rb
|
|
627
|
-
- lib/hexapdf/utils/graphics_helpers.rb
|
|
628
|
-
- lib/hexapdf/utils/lru_cache.rb
|
|
629
|
-
- lib/hexapdf/utils/math_helpers.rb
|
|
630
|
-
- lib/hexapdf/utils/object_hash.rb
|
|
631
|
-
- lib/hexapdf/utils/pdf_doc_encoding.rb
|
|
632
|
-
- lib/hexapdf/utils/sorted_tree_node.rb
|
|
633
|
-
- lib/hexapdf/version.rb
|
|
634
|
-
- lib/hexapdf/writer.rb
|
|
635
|
-
- lib/hexapdf/xref_section.rb
|
|
636
|
-
- test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz
|
|
637
|
-
- test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz
|
|
638
|
-
- test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz
|
|
639
|
-
- test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz
|
|
640
|
-
- test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz
|
|
641
|
-
- test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz
|
|
642
|
-
- test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz
|
|
643
|
-
- test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz
|
|
644
|
-
- test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz
|
|
645
|
-
- test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz
|
|
646
|
-
- test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz
|
|
647
|
-
- test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz
|
|
648
|
-
- test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz
|
|
649
|
-
- test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz
|
|
650
|
-
- test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz
|
|
651
|
-
- test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz
|
|
652
|
-
- test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz
|
|
653
|
-
- test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz
|
|
654
|
-
- test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz
|
|
655
|
-
- test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz
|
|
656
|
-
- test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz
|
|
657
|
-
- test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz
|
|
658
|
-
- test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz
|
|
659
|
-
- test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz
|
|
660
|
-
- test/data/fonts/Ubuntu-Title.ttf
|
|
661
|
-
- test/data/images/cmyk.jpg
|
|
662
|
-
- test/data/images/fillbytes.jpg
|
|
663
|
-
- test/data/images/gray.jpg
|
|
664
|
-
- test/data/images/greyscale-1bit.png
|
|
665
|
-
- test/data/images/greyscale-2bit.png
|
|
666
|
-
- test/data/images/greyscale-4bit.png
|
|
667
|
-
- test/data/images/greyscale-8bit.png
|
|
668
|
-
- test/data/images/greyscale-alpha-8bit.png
|
|
669
|
-
- test/data/images/greyscale-trns-8bit.png
|
|
670
|
-
- test/data/images/greyscale-with-gamma1.0.png
|
|
671
|
-
- test/data/images/greyscale-with-gamma1.5.png
|
|
672
|
-
- test/data/images/indexed-1bit.png
|
|
673
|
-
- test/data/images/indexed-2bit.png
|
|
674
|
-
- test/data/images/indexed-4bit.png
|
|
675
|
-
- test/data/images/indexed-8bit.png
|
|
676
|
-
- test/data/images/indexed-alpha-4bit.png
|
|
677
|
-
- test/data/images/indexed-alpha-8bit.png
|
|
678
|
-
- test/data/images/rgb.jpg
|
|
679
|
-
- test/data/images/truecolour-8bit.png
|
|
680
|
-
- test/data/images/truecolour-alpha-8bit.png
|
|
681
|
-
- test/data/images/truecolour-gama-chrm-8bit.png
|
|
682
|
-
- test/data/images/truecolour-srgb-8bit.png
|
|
683
|
-
- test/data/images/ycck.jpg
|
|
684
|
-
- test/data/minimal.pdf
|
|
685
|
-
- test/data/pdfa/mismatching_glyph_widths_cidfont_type2.pdf
|
|
686
|
-
- test/data/standard-security-handler/README
|
|
687
|
-
- test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf
|
|
688
|
-
- test/data/standard-security-handler/bothpwd-aes-256bit-V5-R5.pdf
|
|
689
|
-
- test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf
|
|
690
|
-
- test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf
|
|
691
|
-
- test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf
|
|
692
|
-
- test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf
|
|
693
|
-
- test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf
|
|
694
|
-
- test/data/standard-security-handler/nopwd-aes-256bit-V5-R5.pdf
|
|
695
|
-
- test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf
|
|
696
|
-
- test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf
|
|
697
|
-
- test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf
|
|
698
|
-
- test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf
|
|
699
|
-
- test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf
|
|
700
|
-
- test/data/standard-security-handler/ownerpwd-aes-256bit-V5-R5.pdf
|
|
701
|
-
- test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf
|
|
702
|
-
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf
|
|
703
|
-
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf
|
|
704
|
-
- test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf
|
|
705
|
-
- test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf
|
|
706
|
-
- test/data/standard-security-handler/userpwd-aes-256bit-V5-R5.pdf
|
|
707
|
-
- test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf
|
|
708
|
-
- test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf
|
|
709
|
-
- test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf
|
|
710
|
-
- test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf
|
|
711
|
-
- test/hexapdf/common_tokenizer_tests.rb
|
|
712
|
-
- test/hexapdf/content/graphic_object/test_arc.rb
|
|
713
|
-
- test/hexapdf/content/graphic_object/test_endpoint_arc.rb
|
|
714
|
-
- test/hexapdf/content/graphic_object/test_geom2d.rb
|
|
715
|
-
- test/hexapdf/content/graphic_object/test_solid_arc.rb
|
|
716
|
-
- test/hexapdf/content/test_canvas.rb
|
|
717
|
-
- test/hexapdf/content/test_canvas_composer.rb
|
|
718
|
-
- test/hexapdf/content/test_color_space.rb
|
|
719
|
-
- test/hexapdf/content/test_graphics_state.rb
|
|
720
|
-
- test/hexapdf/content/test_operator.rb
|
|
721
|
-
- test/hexapdf/content/test_parser.rb
|
|
722
|
-
- test/hexapdf/content/test_processor.rb
|
|
723
|
-
- test/hexapdf/content/test_smart_text_extractor.rb
|
|
724
|
-
- test/hexapdf/content/test_transformation_matrix.rb
|
|
725
|
-
- test/hexapdf/digital_signature/common.rb
|
|
726
|
-
- test/hexapdf/digital_signature/signing/test_default_handler.rb
|
|
727
|
-
- test/hexapdf/digital_signature/signing/test_signed_data_creator.rb
|
|
728
|
-
- test/hexapdf/digital_signature/signing/test_timestamp_handler.rb
|
|
729
|
-
- test/hexapdf/digital_signature/test_cms_handler.rb
|
|
730
|
-
- test/hexapdf/digital_signature/test_handler.rb
|
|
731
|
-
- test/hexapdf/digital_signature/test_pkcs1_handler.rb
|
|
732
|
-
- test/hexapdf/digital_signature/test_signature.rb
|
|
733
|
-
- test/hexapdf/digital_signature/test_signatures.rb
|
|
734
|
-
- test/hexapdf/digital_signature/test_signing.rb
|
|
735
|
-
- test/hexapdf/digital_signature/test_verification_result.rb
|
|
736
|
-
- test/hexapdf/document/test_annotations.rb
|
|
737
|
-
- test/hexapdf/document/test_destinations.rb
|
|
738
|
-
- test/hexapdf/document/test_files.rb
|
|
739
|
-
- test/hexapdf/document/test_fonts.rb
|
|
740
|
-
- test/hexapdf/document/test_images.rb
|
|
741
|
-
- test/hexapdf/document/test_layout.rb
|
|
742
|
-
- test/hexapdf/document/test_metadata.rb
|
|
743
|
-
- test/hexapdf/document/test_pages.rb
|
|
744
|
-
- test/hexapdf/encryption/common.rb
|
|
745
|
-
- test/hexapdf/encryption/test_aes.rb
|
|
746
|
-
- test/hexapdf/encryption/test_arc4.rb
|
|
747
|
-
- test/hexapdf/encryption/test_fast_aes.rb
|
|
748
|
-
- test/hexapdf/encryption/test_fast_arc4.rb
|
|
749
|
-
- test/hexapdf/encryption/test_identity.rb
|
|
750
|
-
- test/hexapdf/encryption/test_ruby_aes.rb
|
|
751
|
-
- test/hexapdf/encryption/test_ruby_arc4.rb
|
|
752
|
-
- test/hexapdf/encryption/test_security_handler.rb
|
|
753
|
-
- test/hexapdf/encryption/test_standard_security_handler.rb
|
|
754
|
-
- test/hexapdf/filter/common.rb
|
|
755
|
-
- test/hexapdf/filter/test_ascii85_decode.rb
|
|
756
|
-
- test/hexapdf/filter/test_ascii_hex_decode.rb
|
|
757
|
-
- test/hexapdf/filter/test_brotli_decode.rb
|
|
758
|
-
- test/hexapdf/filter/test_crypt.rb
|
|
759
|
-
- test/hexapdf/filter/test_encryption.rb
|
|
760
|
-
- test/hexapdf/filter/test_flate_decode.rb
|
|
761
|
-
- test/hexapdf/filter/test_lzw_decode.rb
|
|
762
|
-
- test/hexapdf/filter/test_predictor.rb
|
|
763
|
-
- test/hexapdf/filter/test_run_length_decode.rb
|
|
764
|
-
- test/hexapdf/font/cmap/test_parser.rb
|
|
765
|
-
- test/hexapdf/font/cmap/test_writer.rb
|
|
766
|
-
- test/hexapdf/font/encoding/test_base.rb
|
|
767
|
-
- test/hexapdf/font/encoding/test_difference_encoding.rb
|
|
768
|
-
- test/hexapdf/font/encoding/test_glyph_list.rb
|
|
769
|
-
- test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb
|
|
770
|
-
- test/hexapdf/font/test_cmap.rb
|
|
771
|
-
- test/hexapdf/font/test_encoding.rb
|
|
772
|
-
- test/hexapdf/font/test_invalid_glyph.rb
|
|
773
|
-
- test/hexapdf/font/test_true_type_wrapper.rb
|
|
774
|
-
- test/hexapdf/font/test_type1_wrapper.rb
|
|
775
|
-
- test/hexapdf/font/true_type/common.rb
|
|
776
|
-
- test/hexapdf/font/true_type/table/common.rb
|
|
777
|
-
- test/hexapdf/font/true_type/table/test_cmap.rb
|
|
778
|
-
- test/hexapdf/font/true_type/table/test_cmap_subtable.rb
|
|
779
|
-
- test/hexapdf/font/true_type/table/test_directory.rb
|
|
780
|
-
- test/hexapdf/font/true_type/table/test_glyf.rb
|
|
781
|
-
- test/hexapdf/font/true_type/table/test_head.rb
|
|
782
|
-
- test/hexapdf/font/true_type/table/test_hhea.rb
|
|
783
|
-
- test/hexapdf/font/true_type/table/test_hmtx.rb
|
|
784
|
-
- test/hexapdf/font/true_type/table/test_kern.rb
|
|
785
|
-
- test/hexapdf/font/true_type/table/test_loca.rb
|
|
786
|
-
- test/hexapdf/font/true_type/table/test_maxp.rb
|
|
787
|
-
- test/hexapdf/font/true_type/table/test_name.rb
|
|
788
|
-
- test/hexapdf/font/true_type/table/test_os2.rb
|
|
789
|
-
- test/hexapdf/font/true_type/table/test_post.rb
|
|
790
|
-
- test/hexapdf/font/true_type/test_builder.rb
|
|
791
|
-
- test/hexapdf/font/true_type/test_font.rb
|
|
792
|
-
- test/hexapdf/font/true_type/test_optimizer.rb
|
|
793
|
-
- test/hexapdf/font/true_type/test_subsetter.rb
|
|
794
|
-
- test/hexapdf/font/true_type/test_table.rb
|
|
795
|
-
- test/hexapdf/font/type1/common.rb
|
|
796
|
-
- test/hexapdf/font/type1/test_afm_parser.rb
|
|
797
|
-
- test/hexapdf/font/type1/test_font.rb
|
|
798
|
-
- test/hexapdf/font/type1/test_font_metrics.rb
|
|
799
|
-
- test/hexapdf/font/type1/test_pfb_parser.rb
|
|
800
|
-
- test/hexapdf/font_loader/test_from_configuration.rb
|
|
801
|
-
- test/hexapdf/font_loader/test_from_file.rb
|
|
802
|
-
- test/hexapdf/font_loader/test_standard14.rb
|
|
803
|
-
- test/hexapdf/font_loader/test_variant_from_name.rb
|
|
804
|
-
- test/hexapdf/image_loader/test_jpeg.rb
|
|
805
|
-
- test/hexapdf/image_loader/test_pdf.rb
|
|
806
|
-
- test/hexapdf/image_loader/test_png.rb
|
|
807
|
-
- test/hexapdf/layout/test_box.rb
|
|
808
|
-
- test/hexapdf/layout/test_box_fitter.rb
|
|
809
|
-
- test/hexapdf/layout/test_column_box.rb
|
|
810
|
-
- test/hexapdf/layout/test_container_box.rb
|
|
811
|
-
- test/hexapdf/layout/test_frame.rb
|
|
812
|
-
- test/hexapdf/layout/test_image_box.rb
|
|
813
|
-
- test/hexapdf/layout/test_inline_box.rb
|
|
814
|
-
- test/hexapdf/layout/test_line.rb
|
|
815
|
-
- test/hexapdf/layout/test_list_box.rb
|
|
816
|
-
- test/hexapdf/layout/test_page_style.rb
|
|
817
|
-
- test/hexapdf/layout/test_style.rb
|
|
818
|
-
- test/hexapdf/layout/test_table_box.rb
|
|
819
|
-
- test/hexapdf/layout/test_text_box.rb
|
|
820
|
-
- test/hexapdf/layout/test_text_fragment.rb
|
|
821
|
-
- test/hexapdf/layout/test_text_layouter.rb
|
|
822
|
-
- test/hexapdf/layout/test_text_shaper.rb
|
|
823
|
-
- test/hexapdf/layout/test_width_from_polygon.rb
|
|
824
|
-
- test/hexapdf/task/test_dereference.rb
|
|
825
|
-
- test/hexapdf/task/test_import_pages.rb
|
|
826
|
-
- test/hexapdf/task/test_merge_acro_form.rb
|
|
827
|
-
- test/hexapdf/task/test_optimize.rb
|
|
828
|
-
- test/hexapdf/task/test_pdfa.rb
|
|
829
|
-
- test/hexapdf/test_composer.rb
|
|
830
|
-
- test/hexapdf/test_configuration.rb
|
|
831
|
-
- test/hexapdf/test_data_dir.rb
|
|
832
|
-
- test/hexapdf/test_dictionary.rb
|
|
833
|
-
- test/hexapdf/test_dictionary_fields.rb
|
|
834
|
-
- test/hexapdf/test_document.rb
|
|
835
|
-
- test/hexapdf/test_filter.rb
|
|
836
|
-
- test/hexapdf/test_importer.rb
|
|
837
|
-
- test/hexapdf/test_object.rb
|
|
838
|
-
- test/hexapdf/test_parser.rb
|
|
839
|
-
- test/hexapdf/test_pdf_array.rb
|
|
840
|
-
- test/hexapdf/test_rectangle.rb
|
|
841
|
-
- test/hexapdf/test_reference.rb
|
|
842
|
-
- test/hexapdf/test_revision.rb
|
|
843
|
-
- test/hexapdf/test_revisions.rb
|
|
844
|
-
- test/hexapdf/test_serializer.rb
|
|
845
|
-
- test/hexapdf/test_stream.rb
|
|
846
|
-
- test/hexapdf/test_tokenizer.rb
|
|
847
|
-
- test/hexapdf/test_type.rb
|
|
848
|
-
- test/hexapdf/test_utils.rb
|
|
849
|
-
- test/hexapdf/test_writer.rb
|
|
850
|
-
- test/hexapdf/test_xref_section.rb
|
|
851
|
-
- test/hexapdf/type/acro_form/test_appearance_generator.rb
|
|
852
|
-
- test/hexapdf/type/acro_form/test_button_field.rb
|
|
853
|
-
- test/hexapdf/type/acro_form/test_choice_field.rb
|
|
854
|
-
- test/hexapdf/type/acro_form/test_field.rb
|
|
855
|
-
- test/hexapdf/type/acro_form/test_form.rb
|
|
856
|
-
- test/hexapdf/type/acro_form/test_java_script_actions.rb
|
|
857
|
-
- test/hexapdf/type/acro_form/test_signature_field.rb
|
|
858
|
-
- test/hexapdf/type/acro_form/test_text_field.rb
|
|
859
|
-
- test/hexapdf/type/acro_form/test_variable_text_field.rb
|
|
860
|
-
- test/hexapdf/type/actions/test_launch.rb
|
|
861
|
-
- test/hexapdf/type/actions/test_set_ocg_state.rb
|
|
862
|
-
- test/hexapdf/type/actions/test_uri.rb
|
|
863
|
-
- test/hexapdf/type/annotations/test_appearance_generator.rb
|
|
864
|
-
- test/hexapdf/type/annotations/test_border_effect.rb
|
|
865
|
-
- test/hexapdf/type/annotations/test_border_styling.rb
|
|
866
|
-
- test/hexapdf/type/annotations/test_ink.rb
|
|
867
|
-
- test/hexapdf/type/annotations/test_interior_color.rb
|
|
868
|
-
- test/hexapdf/type/annotations/test_line.rb
|
|
869
|
-
- test/hexapdf/type/annotations/test_line_ending_styling.rb
|
|
870
|
-
- test/hexapdf/type/annotations/test_markup_annotation.rb
|
|
871
|
-
- test/hexapdf/type/annotations/test_polygon_polyline.rb
|
|
872
|
-
- test/hexapdf/type/annotations/test_text.rb
|
|
873
|
-
- test/hexapdf/type/annotations/test_widget.rb
|
|
874
|
-
- test/hexapdf/type/test_annotation.rb
|
|
875
|
-
- test/hexapdf/type/test_catalog.rb
|
|
876
|
-
- test/hexapdf/type/test_cid_font.rb
|
|
877
|
-
- test/hexapdf/type/
|
|
878
|
-
- test/hexapdf/type/
|
|
879
|
-
- test/hexapdf/type/
|
|
880
|
-
- test/hexapdf/type/
|
|
881
|
-
- test/hexapdf/type/
|
|
882
|
-
- test/hexapdf/type/
|
|
883
|
-
- test/hexapdf/type/
|
|
884
|
-
- test/hexapdf/type/
|
|
885
|
-
- test/hexapdf/type/
|
|
886
|
-
- test/hexapdf/type/
|
|
887
|
-
- test/hexapdf/type/
|
|
888
|
-
- test/hexapdf/type/
|
|
889
|
-
- test/hexapdf/type/
|
|
890
|
-
- test/hexapdf/type/
|
|
891
|
-
- test/hexapdf/type/
|
|
892
|
-
- test/hexapdf/type/
|
|
893
|
-
- test/hexapdf/type/
|
|
894
|
-
- test/hexapdf/type/
|
|
895
|
-
- test/hexapdf/type/
|
|
896
|
-
- test/hexapdf/type/
|
|
897
|
-
- test/hexapdf/type/
|
|
898
|
-
- test/hexapdf/type/
|
|
899
|
-
- test/hexapdf/type/
|
|
900
|
-
- test/hexapdf/type/
|
|
901
|
-
- test/hexapdf/
|
|
902
|
-
- test/hexapdf/utils/
|
|
903
|
-
- test/hexapdf/utils/
|
|
904
|
-
- test/hexapdf/utils/
|
|
905
|
-
- test/hexapdf/utils/
|
|
906
|
-
- test/hexapdf/utils/
|
|
907
|
-
- test/hexapdf/utils/
|
|
908
|
-
- test/
|
|
909
|
-
|
|
269
|
+
- CHANGELOG.md
|
|
270
|
+
- LICENSE
|
|
271
|
+
- README.md
|
|
272
|
+
- Rakefile
|
|
273
|
+
- agpl-3.0.txt
|
|
274
|
+
- bin/hexapdf
|
|
275
|
+
- data/hexapdf/afm/Courier-Bold.afm
|
|
276
|
+
- data/hexapdf/afm/Courier-BoldOblique.afm
|
|
277
|
+
- data/hexapdf/afm/Courier-Oblique.afm
|
|
278
|
+
- data/hexapdf/afm/Courier.afm
|
|
279
|
+
- data/hexapdf/afm/Helvetica-Bold.afm
|
|
280
|
+
- data/hexapdf/afm/Helvetica-BoldOblique.afm
|
|
281
|
+
- data/hexapdf/afm/Helvetica-Oblique.afm
|
|
282
|
+
- data/hexapdf/afm/Helvetica.afm
|
|
283
|
+
- data/hexapdf/afm/MustRead.html
|
|
284
|
+
- data/hexapdf/afm/Symbol.afm
|
|
285
|
+
- data/hexapdf/afm/Times-Bold.afm
|
|
286
|
+
- data/hexapdf/afm/Times-BoldItalic.afm
|
|
287
|
+
- data/hexapdf/afm/Times-Italic.afm
|
|
288
|
+
- data/hexapdf/afm/Times-Roman.afm
|
|
289
|
+
- data/hexapdf/afm/ZapfDingbats.afm
|
|
290
|
+
- data/hexapdf/cert/demo_cert.rb
|
|
291
|
+
- data/hexapdf/cert/root-ca.crt
|
|
292
|
+
- data/hexapdf/cert/signing.crt
|
|
293
|
+
- data/hexapdf/cert/signing.key
|
|
294
|
+
- data/hexapdf/cert/sub-ca.crt
|
|
295
|
+
- data/hexapdf/cmap/83pv-RKSJ-H
|
|
296
|
+
- data/hexapdf/cmap/90ms-RKSJ-H
|
|
297
|
+
- data/hexapdf/cmap/90ms-RKSJ-V
|
|
298
|
+
- data/hexapdf/cmap/90msp-RKSJ-H
|
|
299
|
+
- data/hexapdf/cmap/90msp-RKSJ-V
|
|
300
|
+
- data/hexapdf/cmap/90pv-RKSJ-H
|
|
301
|
+
- data/hexapdf/cmap/Add-RKSJ-H
|
|
302
|
+
- data/hexapdf/cmap/Add-RKSJ-V
|
|
303
|
+
- data/hexapdf/cmap/Adobe-CNS1-UCS2
|
|
304
|
+
- data/hexapdf/cmap/Adobe-GB1-UCS2
|
|
305
|
+
- data/hexapdf/cmap/Adobe-Japan1-UCS2
|
|
306
|
+
- data/hexapdf/cmap/Adobe-Korea1-UCS2
|
|
307
|
+
- data/hexapdf/cmap/B5pc-H
|
|
308
|
+
- data/hexapdf/cmap/B5pc-V
|
|
309
|
+
- data/hexapdf/cmap/CNS-EUC-H
|
|
310
|
+
- data/hexapdf/cmap/CNS-EUC-V
|
|
311
|
+
- data/hexapdf/cmap/ETen-B5-H
|
|
312
|
+
- data/hexapdf/cmap/ETen-B5-V
|
|
313
|
+
- data/hexapdf/cmap/ETenms-B5-H
|
|
314
|
+
- data/hexapdf/cmap/ETenms-B5-V
|
|
315
|
+
- data/hexapdf/cmap/EUC-H
|
|
316
|
+
- data/hexapdf/cmap/EUC-V
|
|
317
|
+
- data/hexapdf/cmap/Ext-RKSJ-H
|
|
318
|
+
- data/hexapdf/cmap/Ext-RKSJ-V
|
|
319
|
+
- data/hexapdf/cmap/GB-EUC-H
|
|
320
|
+
- data/hexapdf/cmap/GB-EUC-V
|
|
321
|
+
- data/hexapdf/cmap/GBK-EUC-H
|
|
322
|
+
- data/hexapdf/cmap/GBK-EUC-V
|
|
323
|
+
- data/hexapdf/cmap/GBK2K-H
|
|
324
|
+
- data/hexapdf/cmap/GBK2K-V
|
|
325
|
+
- data/hexapdf/cmap/GBKp-EUC-H
|
|
326
|
+
- data/hexapdf/cmap/GBKp-EUC-V
|
|
327
|
+
- data/hexapdf/cmap/GBpc-EUC-H
|
|
328
|
+
- data/hexapdf/cmap/GBpc-EUC-V
|
|
329
|
+
- data/hexapdf/cmap/H
|
|
330
|
+
- data/hexapdf/cmap/HKscs-B5-H
|
|
331
|
+
- data/hexapdf/cmap/HKscs-B5-V
|
|
332
|
+
- data/hexapdf/cmap/Identity-H
|
|
333
|
+
- data/hexapdf/cmap/Identity-V
|
|
334
|
+
- data/hexapdf/cmap/KSC-EUC-H
|
|
335
|
+
- data/hexapdf/cmap/KSC-EUC-V
|
|
336
|
+
- data/hexapdf/cmap/KSCms-UHC-H
|
|
337
|
+
- data/hexapdf/cmap/KSCms-UHC-HW-H
|
|
338
|
+
- data/hexapdf/cmap/KSCms-UHC-HW-V
|
|
339
|
+
- data/hexapdf/cmap/KSCms-UHC-V
|
|
340
|
+
- data/hexapdf/cmap/KSCpc-EUC-H
|
|
341
|
+
- data/hexapdf/cmap/LICENSE.txt
|
|
342
|
+
- data/hexapdf/cmap/README.txt
|
|
343
|
+
- data/hexapdf/cmap/UniCNS-UCS2-H
|
|
344
|
+
- data/hexapdf/cmap/UniCNS-UCS2-V
|
|
345
|
+
- data/hexapdf/cmap/UniCNS-UTF16-H
|
|
346
|
+
- data/hexapdf/cmap/UniCNS-UTF16-V
|
|
347
|
+
- data/hexapdf/cmap/UniGB-UCS2-H
|
|
348
|
+
- data/hexapdf/cmap/UniGB-UCS2-V
|
|
349
|
+
- data/hexapdf/cmap/UniGB-UTF16-H
|
|
350
|
+
- data/hexapdf/cmap/UniGB-UTF16-V
|
|
351
|
+
- data/hexapdf/cmap/UniJIS-UCS2-H
|
|
352
|
+
- data/hexapdf/cmap/UniJIS-UCS2-HW-H
|
|
353
|
+
- data/hexapdf/cmap/UniJIS-UCS2-HW-V
|
|
354
|
+
- data/hexapdf/cmap/UniJIS-UCS2-V
|
|
355
|
+
- data/hexapdf/cmap/UniJIS-UTF16-H
|
|
356
|
+
- data/hexapdf/cmap/UniJIS-UTF16-V
|
|
357
|
+
- data/hexapdf/cmap/UniKS-UCS2-H
|
|
358
|
+
- data/hexapdf/cmap/UniKS-UCS2-V
|
|
359
|
+
- data/hexapdf/cmap/UniKS-UTF16-H
|
|
360
|
+
- data/hexapdf/cmap/UniKS-UTF16-V
|
|
361
|
+
- data/hexapdf/cmap/V
|
|
362
|
+
- data/hexapdf/encoding/glyphlist.txt
|
|
363
|
+
- data/hexapdf/encoding/zapfdingbats.txt
|
|
364
|
+
- data/hexapdf/fonts/Inter-Bold.ttf
|
|
365
|
+
- data/hexapdf/fonts/Inter-BoldItalic.ttf
|
|
366
|
+
- data/hexapdf/fonts/Inter-Italic.ttf
|
|
367
|
+
- data/hexapdf/fonts/Inter-Regular.ttf
|
|
368
|
+
- data/hexapdf/fonts/OFL.txt
|
|
369
|
+
- data/hexapdf/sRGB2014.icc
|
|
370
|
+
- data/hexapdf/sRGB2014.icc.LICENSE
|
|
371
|
+
- examples/001-hello_world.rb
|
|
372
|
+
- examples/002-graphics.rb
|
|
373
|
+
- examples/003-arcs.rb
|
|
374
|
+
- examples/004-optimizing.rb
|
|
375
|
+
- examples/005-merging.rb
|
|
376
|
+
- examples/006-standard_pdf_fonts.rb
|
|
377
|
+
- examples/007-truetype.rb
|
|
378
|
+
- examples/008-show_char_bboxes.rb
|
|
379
|
+
- examples/009-text_layouter_alignment.rb
|
|
380
|
+
- examples/010-text_layouter_inline_boxes.rb
|
|
381
|
+
- examples/011-text_layouter_line_wrapping.rb
|
|
382
|
+
- examples/012-text_layouter_styling.rb
|
|
383
|
+
- examples/013-text_layouter_shapes.rb
|
|
384
|
+
- examples/014-text_in_polygon.rb
|
|
385
|
+
- examples/015-boxes.rb
|
|
386
|
+
- examples/016-frame_automatic_box_placement.rb
|
|
387
|
+
- examples/017-frame_text_flow.rb
|
|
388
|
+
- examples/018-composer.rb
|
|
389
|
+
- examples/019-acro_form.rb
|
|
390
|
+
- examples/020-column_box.rb
|
|
391
|
+
- examples/021-list_box.rb
|
|
392
|
+
- examples/022-outline.rb
|
|
393
|
+
- examples/023-images.rb
|
|
394
|
+
- examples/024-digital-signatures.rb
|
|
395
|
+
- examples/025-table_box.rb
|
|
396
|
+
- examples/026-optional_content.rb
|
|
397
|
+
- examples/027-composer_optional_content.rb
|
|
398
|
+
- examples/028-composer_mask_mode.rb
|
|
399
|
+
- examples/029-composer_fallback_fonts.rb
|
|
400
|
+
- examples/030-pdfa.rb
|
|
401
|
+
- examples/031-acro_form_java_script.rb
|
|
402
|
+
- examples/032-acro_form_list_and_fill.rb
|
|
403
|
+
- examples/033-text_extraction.rb
|
|
404
|
+
- examples/034-text_shaping.rb
|
|
405
|
+
- examples/emoji-smile.png
|
|
406
|
+
- examples/emoji-wink.png
|
|
407
|
+
- examples/machupicchu.jpg
|
|
408
|
+
- lib/hexapdf.rb
|
|
409
|
+
- lib/hexapdf/cli.rb
|
|
410
|
+
- lib/hexapdf/cli/batch.rb
|
|
411
|
+
- lib/hexapdf/cli/command.rb
|
|
412
|
+
- lib/hexapdf/cli/debug_info.rb
|
|
413
|
+
- lib/hexapdf/cli/files.rb
|
|
414
|
+
- lib/hexapdf/cli/fonts.rb
|
|
415
|
+
- lib/hexapdf/cli/form.rb
|
|
416
|
+
- lib/hexapdf/cli/image2pdf.rb
|
|
417
|
+
- lib/hexapdf/cli/images.rb
|
|
418
|
+
- lib/hexapdf/cli/info.rb
|
|
419
|
+
- lib/hexapdf/cli/inspect.rb
|
|
420
|
+
- lib/hexapdf/cli/merge.rb
|
|
421
|
+
- lib/hexapdf/cli/modify.rb
|
|
422
|
+
- lib/hexapdf/cli/optimize.rb
|
|
423
|
+
- lib/hexapdf/cli/split.rb
|
|
424
|
+
- lib/hexapdf/cli/usage.rb
|
|
425
|
+
- lib/hexapdf/cli/watermark.rb
|
|
426
|
+
- lib/hexapdf/composer.rb
|
|
427
|
+
- lib/hexapdf/configuration.rb
|
|
428
|
+
- lib/hexapdf/content.rb
|
|
429
|
+
- lib/hexapdf/content/canvas.rb
|
|
430
|
+
- lib/hexapdf/content/canvas_composer.rb
|
|
431
|
+
- lib/hexapdf/content/color_space.rb
|
|
432
|
+
- lib/hexapdf/content/graphic_object.rb
|
|
433
|
+
- lib/hexapdf/content/graphic_object/arc.rb
|
|
434
|
+
- lib/hexapdf/content/graphic_object/endpoint_arc.rb
|
|
435
|
+
- lib/hexapdf/content/graphic_object/geom2d.rb
|
|
436
|
+
- lib/hexapdf/content/graphic_object/solid_arc.rb
|
|
437
|
+
- lib/hexapdf/content/graphics_state.rb
|
|
438
|
+
- lib/hexapdf/content/operator.rb
|
|
439
|
+
- lib/hexapdf/content/parser.rb
|
|
440
|
+
- lib/hexapdf/content/processor.rb
|
|
441
|
+
- lib/hexapdf/content/smart_text_extractor.rb
|
|
442
|
+
- lib/hexapdf/content/transformation_matrix.rb
|
|
443
|
+
- lib/hexapdf/data_dir.rb
|
|
444
|
+
- lib/hexapdf/dictionary.rb
|
|
445
|
+
- lib/hexapdf/dictionary_fields.rb
|
|
446
|
+
- lib/hexapdf/digital_signature.rb
|
|
447
|
+
- lib/hexapdf/digital_signature/cms_handler.rb
|
|
448
|
+
- lib/hexapdf/digital_signature/handler.rb
|
|
449
|
+
- lib/hexapdf/digital_signature/pkcs1_handler.rb
|
|
450
|
+
- lib/hexapdf/digital_signature/signature.rb
|
|
451
|
+
- lib/hexapdf/digital_signature/signatures.rb
|
|
452
|
+
- lib/hexapdf/digital_signature/signing.rb
|
|
453
|
+
- lib/hexapdf/digital_signature/signing/default_handler.rb
|
|
454
|
+
- lib/hexapdf/digital_signature/signing/signed_data_creator.rb
|
|
455
|
+
- lib/hexapdf/digital_signature/signing/timestamp_handler.rb
|
|
456
|
+
- lib/hexapdf/digital_signature/verification_result.rb
|
|
457
|
+
- lib/hexapdf/document.rb
|
|
458
|
+
- lib/hexapdf/document/annotations.rb
|
|
459
|
+
- lib/hexapdf/document/destinations.rb
|
|
460
|
+
- lib/hexapdf/document/files.rb
|
|
461
|
+
- lib/hexapdf/document/fonts.rb
|
|
462
|
+
- lib/hexapdf/document/images.rb
|
|
463
|
+
- lib/hexapdf/document/layout.rb
|
|
464
|
+
- lib/hexapdf/document/metadata.rb
|
|
465
|
+
- lib/hexapdf/document/pages.rb
|
|
466
|
+
- lib/hexapdf/encryption.rb
|
|
467
|
+
- lib/hexapdf/encryption/aes.rb
|
|
468
|
+
- lib/hexapdf/encryption/arc4.rb
|
|
469
|
+
- lib/hexapdf/encryption/fast_aes.rb
|
|
470
|
+
- lib/hexapdf/encryption/fast_arc4.rb
|
|
471
|
+
- lib/hexapdf/encryption/identity.rb
|
|
472
|
+
- lib/hexapdf/encryption/ruby_aes.rb
|
|
473
|
+
- lib/hexapdf/encryption/ruby_arc4.rb
|
|
474
|
+
- lib/hexapdf/encryption/security_handler.rb
|
|
475
|
+
- lib/hexapdf/encryption/standard_security_handler.rb
|
|
476
|
+
- lib/hexapdf/error.rb
|
|
477
|
+
- lib/hexapdf/filter.rb
|
|
478
|
+
- lib/hexapdf/filter/ascii85_decode.rb
|
|
479
|
+
- lib/hexapdf/filter/ascii_hex_decode.rb
|
|
480
|
+
- lib/hexapdf/filter/brotli_decode.rb
|
|
481
|
+
- lib/hexapdf/filter/crypt.rb
|
|
482
|
+
- lib/hexapdf/filter/encryption.rb
|
|
483
|
+
- lib/hexapdf/filter/flate_decode.rb
|
|
484
|
+
- lib/hexapdf/filter/lzw_decode.rb
|
|
485
|
+
- lib/hexapdf/filter/pass_through.rb
|
|
486
|
+
- lib/hexapdf/filter/predictor.rb
|
|
487
|
+
- lib/hexapdf/filter/run_length_decode.rb
|
|
488
|
+
- lib/hexapdf/font/cmap.rb
|
|
489
|
+
- lib/hexapdf/font/cmap/parser.rb
|
|
490
|
+
- lib/hexapdf/font/cmap/writer.rb
|
|
491
|
+
- lib/hexapdf/font/encoding.rb
|
|
492
|
+
- lib/hexapdf/font/encoding/base.rb
|
|
493
|
+
- lib/hexapdf/font/encoding/difference_encoding.rb
|
|
494
|
+
- lib/hexapdf/font/encoding/glyph_list.rb
|
|
495
|
+
- lib/hexapdf/font/encoding/mac_expert_encoding.rb
|
|
496
|
+
- lib/hexapdf/font/encoding/mac_roman_encoding.rb
|
|
497
|
+
- lib/hexapdf/font/encoding/standard_encoding.rb
|
|
498
|
+
- lib/hexapdf/font/encoding/symbol_encoding.rb
|
|
499
|
+
- lib/hexapdf/font/encoding/win_ansi_encoding.rb
|
|
500
|
+
- lib/hexapdf/font/encoding/zapf_dingbats_encoding.rb
|
|
501
|
+
- lib/hexapdf/font/invalid_glyph.rb
|
|
502
|
+
- lib/hexapdf/font/true_type.rb
|
|
503
|
+
- lib/hexapdf/font/true_type/builder.rb
|
|
504
|
+
- lib/hexapdf/font/true_type/font.rb
|
|
505
|
+
- lib/hexapdf/font/true_type/optimizer.rb
|
|
506
|
+
- lib/hexapdf/font/true_type/subsetter.rb
|
|
507
|
+
- lib/hexapdf/font/true_type/table.rb
|
|
508
|
+
- lib/hexapdf/font/true_type/table/cmap.rb
|
|
509
|
+
- lib/hexapdf/font/true_type/table/cmap_subtable.rb
|
|
510
|
+
- lib/hexapdf/font/true_type/table/directory.rb
|
|
511
|
+
- lib/hexapdf/font/true_type/table/glyf.rb
|
|
512
|
+
- lib/hexapdf/font/true_type/table/head.rb
|
|
513
|
+
- lib/hexapdf/font/true_type/table/hhea.rb
|
|
514
|
+
- lib/hexapdf/font/true_type/table/hmtx.rb
|
|
515
|
+
- lib/hexapdf/font/true_type/table/kern.rb
|
|
516
|
+
- lib/hexapdf/font/true_type/table/loca.rb
|
|
517
|
+
- lib/hexapdf/font/true_type/table/maxp.rb
|
|
518
|
+
- lib/hexapdf/font/true_type/table/name.rb
|
|
519
|
+
- lib/hexapdf/font/true_type/table/os2.rb
|
|
520
|
+
- lib/hexapdf/font/true_type/table/post.rb
|
|
521
|
+
- lib/hexapdf/font/true_type_wrapper.rb
|
|
522
|
+
- lib/hexapdf/font/type1.rb
|
|
523
|
+
- lib/hexapdf/font/type1/afm_parser.rb
|
|
524
|
+
- lib/hexapdf/font/type1/character_metrics.rb
|
|
525
|
+
- lib/hexapdf/font/type1/font.rb
|
|
526
|
+
- lib/hexapdf/font/type1/font_metrics.rb
|
|
527
|
+
- lib/hexapdf/font/type1/pfb_parser.rb
|
|
528
|
+
- lib/hexapdf/font/type1_wrapper.rb
|
|
529
|
+
- lib/hexapdf/font_loader.rb
|
|
530
|
+
- lib/hexapdf/font_loader/from_configuration.rb
|
|
531
|
+
- lib/hexapdf/font_loader/from_file.rb
|
|
532
|
+
- lib/hexapdf/font_loader/standard14.rb
|
|
533
|
+
- lib/hexapdf/font_loader/variant_from_name.rb
|
|
534
|
+
- lib/hexapdf/image_loader.rb
|
|
535
|
+
- lib/hexapdf/image_loader/jpeg.rb
|
|
536
|
+
- lib/hexapdf/image_loader/pdf.rb
|
|
537
|
+
- lib/hexapdf/image_loader/png.rb
|
|
538
|
+
- lib/hexapdf/importer.rb
|
|
539
|
+
- lib/hexapdf/layout.rb
|
|
540
|
+
- lib/hexapdf/layout/box.rb
|
|
541
|
+
- lib/hexapdf/layout/box_fitter.rb
|
|
542
|
+
- lib/hexapdf/layout/column_box.rb
|
|
543
|
+
- lib/hexapdf/layout/container_box.rb
|
|
544
|
+
- lib/hexapdf/layout/frame.rb
|
|
545
|
+
- lib/hexapdf/layout/image_box.rb
|
|
546
|
+
- lib/hexapdf/layout/inline_box.rb
|
|
547
|
+
- lib/hexapdf/layout/line.rb
|
|
548
|
+
- lib/hexapdf/layout/list_box.rb
|
|
549
|
+
- lib/hexapdf/layout/numeric_refinements.rb
|
|
550
|
+
- lib/hexapdf/layout/page_style.rb
|
|
551
|
+
- lib/hexapdf/layout/style.rb
|
|
552
|
+
- lib/hexapdf/layout/table_box.rb
|
|
553
|
+
- lib/hexapdf/layout/text_box.rb
|
|
554
|
+
- lib/hexapdf/layout/text_fragment.rb
|
|
555
|
+
- lib/hexapdf/layout/text_layouter.rb
|
|
556
|
+
- lib/hexapdf/layout/text_shaper.rb
|
|
557
|
+
- lib/hexapdf/layout/width_from_polygon.rb
|
|
558
|
+
- lib/hexapdf/name_tree_node.rb
|
|
559
|
+
- lib/hexapdf/number_tree_node.rb
|
|
560
|
+
- lib/hexapdf/object.rb
|
|
561
|
+
- lib/hexapdf/parser.rb
|
|
562
|
+
- lib/hexapdf/pdf_array.rb
|
|
563
|
+
- lib/hexapdf/rectangle.rb
|
|
564
|
+
- lib/hexapdf/reference.rb
|
|
565
|
+
- lib/hexapdf/revision.rb
|
|
566
|
+
- lib/hexapdf/revisions.rb
|
|
567
|
+
- lib/hexapdf/serializer.rb
|
|
568
|
+
- lib/hexapdf/stream.rb
|
|
569
|
+
- lib/hexapdf/task.rb
|
|
570
|
+
- lib/hexapdf/task/dereference.rb
|
|
571
|
+
- lib/hexapdf/task/import_pages.rb
|
|
572
|
+
- lib/hexapdf/task/merge_acro_form.rb
|
|
573
|
+
- lib/hexapdf/task/optimize.rb
|
|
574
|
+
- lib/hexapdf/task/pdfa.rb
|
|
575
|
+
- lib/hexapdf/test_utils.rb
|
|
576
|
+
- lib/hexapdf/tokenizer.rb
|
|
577
|
+
- lib/hexapdf/type.rb
|
|
578
|
+
- lib/hexapdf/type/acro_form.rb
|
|
579
|
+
- lib/hexapdf/type/acro_form/appearance_generator.rb
|
|
580
|
+
- lib/hexapdf/type/acro_form/button_field.rb
|
|
581
|
+
- lib/hexapdf/type/acro_form/choice_field.rb
|
|
582
|
+
- lib/hexapdf/type/acro_form/field.rb
|
|
583
|
+
- lib/hexapdf/type/acro_form/form.rb
|
|
584
|
+
- lib/hexapdf/type/acro_form/java_script_actions.rb
|
|
585
|
+
- lib/hexapdf/type/acro_form/signature_field.rb
|
|
586
|
+
- lib/hexapdf/type/acro_form/text_field.rb
|
|
587
|
+
- lib/hexapdf/type/acro_form/variable_text_field.rb
|
|
588
|
+
- lib/hexapdf/type/action.rb
|
|
589
|
+
- lib/hexapdf/type/actions.rb
|
|
590
|
+
- lib/hexapdf/type/actions/go_to.rb
|
|
591
|
+
- lib/hexapdf/type/actions/go_to_r.rb
|
|
592
|
+
- lib/hexapdf/type/actions/launch.rb
|
|
593
|
+
- lib/hexapdf/type/actions/set_ocg_state.rb
|
|
594
|
+
- lib/hexapdf/type/actions/uri.rb
|
|
595
|
+
- lib/hexapdf/type/annotation.rb
|
|
596
|
+
- lib/hexapdf/type/annotations.rb
|
|
597
|
+
- lib/hexapdf/type/annotations/appearance_generator.rb
|
|
598
|
+
- lib/hexapdf/type/annotations/border_effect.rb
|
|
599
|
+
- lib/hexapdf/type/annotations/border_styling.rb
|
|
600
|
+
- lib/hexapdf/type/annotations/circle.rb
|
|
601
|
+
- lib/hexapdf/type/annotations/ink.rb
|
|
602
|
+
- lib/hexapdf/type/annotations/interior_color.rb
|
|
603
|
+
- lib/hexapdf/type/annotations/line.rb
|
|
604
|
+
- lib/hexapdf/type/annotations/line_ending_styling.rb
|
|
605
|
+
- lib/hexapdf/type/annotations/link.rb
|
|
606
|
+
- lib/hexapdf/type/annotations/markup_annotation.rb
|
|
607
|
+
- lib/hexapdf/type/annotations/polygon.rb
|
|
608
|
+
- lib/hexapdf/type/annotations/polygon_polyline.rb
|
|
609
|
+
- lib/hexapdf/type/annotations/polyline.rb
|
|
610
|
+
- lib/hexapdf/type/annotations/square.rb
|
|
611
|
+
- lib/hexapdf/type/annotations/square_circle.rb
|
|
612
|
+
- lib/hexapdf/type/annotations/text.rb
|
|
613
|
+
- lib/hexapdf/type/annotations/widget.rb
|
|
614
|
+
- lib/hexapdf/type/catalog.rb
|
|
615
|
+
- lib/hexapdf/type/cid_font.rb
|
|
616
|
+
- lib/hexapdf/type/cmap.rb
|
|
617
|
+
- lib/hexapdf/type/document_security_store.rb
|
|
618
|
+
- lib/hexapdf/type/embedded_file.rb
|
|
619
|
+
- lib/hexapdf/type/file_specification.rb
|
|
620
|
+
- lib/hexapdf/type/font.rb
|
|
621
|
+
- lib/hexapdf/type/font_descriptor.rb
|
|
622
|
+
- lib/hexapdf/type/font_simple.rb
|
|
623
|
+
- lib/hexapdf/type/font_true_type.rb
|
|
624
|
+
- lib/hexapdf/type/font_type0.rb
|
|
625
|
+
- lib/hexapdf/type/font_type1.rb
|
|
626
|
+
- lib/hexapdf/type/font_type3.rb
|
|
627
|
+
- lib/hexapdf/type/form.rb
|
|
628
|
+
- lib/hexapdf/type/graphics_state_parameter.rb
|
|
629
|
+
- lib/hexapdf/type/icon_fit.rb
|
|
630
|
+
- lib/hexapdf/type/image.rb
|
|
631
|
+
- lib/hexapdf/type/info.rb
|
|
632
|
+
- lib/hexapdf/type/mark_information.rb
|
|
633
|
+
- lib/hexapdf/type/marked_content_reference.rb
|
|
634
|
+
- lib/hexapdf/type/measure.rb
|
|
635
|
+
- lib/hexapdf/type/metadata.rb
|
|
636
|
+
- lib/hexapdf/type/names.rb
|
|
637
|
+
- lib/hexapdf/type/namespace.rb
|
|
638
|
+
- lib/hexapdf/type/object_reference.rb
|
|
639
|
+
- lib/hexapdf/type/object_stream.rb
|
|
640
|
+
- lib/hexapdf/type/optional_content_configuration.rb
|
|
641
|
+
- lib/hexapdf/type/optional_content_group.rb
|
|
642
|
+
- lib/hexapdf/type/optional_content_membership.rb
|
|
643
|
+
- lib/hexapdf/type/optional_content_properties.rb
|
|
644
|
+
- lib/hexapdf/type/outline.rb
|
|
645
|
+
- lib/hexapdf/type/outline_item.rb
|
|
646
|
+
- lib/hexapdf/type/output_intent.rb
|
|
647
|
+
- lib/hexapdf/type/page.rb
|
|
648
|
+
- lib/hexapdf/type/page_label.rb
|
|
649
|
+
- lib/hexapdf/type/page_tree_node.rb
|
|
650
|
+
- lib/hexapdf/type/resources.rb
|
|
651
|
+
- lib/hexapdf/type/struct_elem.rb
|
|
652
|
+
- lib/hexapdf/type/struct_tree_root.rb
|
|
653
|
+
- lib/hexapdf/type/trailer.rb
|
|
654
|
+
- lib/hexapdf/type/viewer_preferences.rb
|
|
655
|
+
- lib/hexapdf/type/xref_stream.rb
|
|
656
|
+
- lib/hexapdf/utils.rb
|
|
657
|
+
- lib/hexapdf/utils/bit_field.rb
|
|
658
|
+
- lib/hexapdf/utils/bit_stream.rb
|
|
659
|
+
- lib/hexapdf/utils/graphics_helpers.rb
|
|
660
|
+
- lib/hexapdf/utils/lru_cache.rb
|
|
661
|
+
- lib/hexapdf/utils/math_helpers.rb
|
|
662
|
+
- lib/hexapdf/utils/object_hash.rb
|
|
663
|
+
- lib/hexapdf/utils/pdf_doc_encoding.rb
|
|
664
|
+
- lib/hexapdf/utils/sorted_tree_node.rb
|
|
665
|
+
- lib/hexapdf/version.rb
|
|
666
|
+
- lib/hexapdf/writer.rb
|
|
667
|
+
- lib/hexapdf/xref_section.rb
|
|
668
|
+
- test/data/aes-test-vectors/CBCGFSbox-128-decrypt.data.gz
|
|
669
|
+
- test/data/aes-test-vectors/CBCGFSbox-128-encrypt.data.gz
|
|
670
|
+
- test/data/aes-test-vectors/CBCGFSbox-192-decrypt.data.gz
|
|
671
|
+
- test/data/aes-test-vectors/CBCGFSbox-192-encrypt.data.gz
|
|
672
|
+
- test/data/aes-test-vectors/CBCGFSbox-256-decrypt.data.gz
|
|
673
|
+
- test/data/aes-test-vectors/CBCGFSbox-256-encrypt.data.gz
|
|
674
|
+
- test/data/aes-test-vectors/CBCKeySbox-128-decrypt.data.gz
|
|
675
|
+
- test/data/aes-test-vectors/CBCKeySbox-128-encrypt.data.gz
|
|
676
|
+
- test/data/aes-test-vectors/CBCKeySbox-192-decrypt.data.gz
|
|
677
|
+
- test/data/aes-test-vectors/CBCKeySbox-192-encrypt.data.gz
|
|
678
|
+
- test/data/aes-test-vectors/CBCKeySbox-256-decrypt.data.gz
|
|
679
|
+
- test/data/aes-test-vectors/CBCKeySbox-256-encrypt.data.gz
|
|
680
|
+
- test/data/aes-test-vectors/CBCVarKey-128-decrypt.data.gz
|
|
681
|
+
- test/data/aes-test-vectors/CBCVarKey-128-encrypt.data.gz
|
|
682
|
+
- test/data/aes-test-vectors/CBCVarKey-192-decrypt.data.gz
|
|
683
|
+
- test/data/aes-test-vectors/CBCVarKey-192-encrypt.data.gz
|
|
684
|
+
- test/data/aes-test-vectors/CBCVarKey-256-decrypt.data.gz
|
|
685
|
+
- test/data/aes-test-vectors/CBCVarKey-256-encrypt.data.gz
|
|
686
|
+
- test/data/aes-test-vectors/CBCVarTxt-128-decrypt.data.gz
|
|
687
|
+
- test/data/aes-test-vectors/CBCVarTxt-128-encrypt.data.gz
|
|
688
|
+
- test/data/aes-test-vectors/CBCVarTxt-192-decrypt.data.gz
|
|
689
|
+
- test/data/aes-test-vectors/CBCVarTxt-192-encrypt.data.gz
|
|
690
|
+
- test/data/aes-test-vectors/CBCVarTxt-256-decrypt.data.gz
|
|
691
|
+
- test/data/aes-test-vectors/CBCVarTxt-256-encrypt.data.gz
|
|
692
|
+
- test/data/fonts/Ubuntu-Title.ttf
|
|
693
|
+
- test/data/images/cmyk.jpg
|
|
694
|
+
- test/data/images/fillbytes.jpg
|
|
695
|
+
- test/data/images/gray.jpg
|
|
696
|
+
- test/data/images/greyscale-1bit.png
|
|
697
|
+
- test/data/images/greyscale-2bit.png
|
|
698
|
+
- test/data/images/greyscale-4bit.png
|
|
699
|
+
- test/data/images/greyscale-8bit.png
|
|
700
|
+
- test/data/images/greyscale-alpha-8bit.png
|
|
701
|
+
- test/data/images/greyscale-trns-8bit.png
|
|
702
|
+
- test/data/images/greyscale-with-gamma1.0.png
|
|
703
|
+
- test/data/images/greyscale-with-gamma1.5.png
|
|
704
|
+
- test/data/images/indexed-1bit.png
|
|
705
|
+
- test/data/images/indexed-2bit.png
|
|
706
|
+
- test/data/images/indexed-4bit.png
|
|
707
|
+
- test/data/images/indexed-8bit.png
|
|
708
|
+
- test/data/images/indexed-alpha-4bit.png
|
|
709
|
+
- test/data/images/indexed-alpha-8bit.png
|
|
710
|
+
- test/data/images/rgb.jpg
|
|
711
|
+
- test/data/images/truecolour-8bit.png
|
|
712
|
+
- test/data/images/truecolour-alpha-8bit.png
|
|
713
|
+
- test/data/images/truecolour-gama-chrm-8bit.png
|
|
714
|
+
- test/data/images/truecolour-srgb-8bit.png
|
|
715
|
+
- test/data/images/ycck.jpg
|
|
716
|
+
- test/data/minimal.pdf
|
|
717
|
+
- test/data/pdfa/mismatching_glyph_widths_cidfont_type2.pdf
|
|
718
|
+
- test/data/standard-security-handler/README
|
|
719
|
+
- test/data/standard-security-handler/bothpwd-aes-128bit-V4.pdf
|
|
720
|
+
- test/data/standard-security-handler/bothpwd-aes-256bit-V5-R5.pdf
|
|
721
|
+
- test/data/standard-security-handler/bothpwd-aes-256bit-V5.pdf
|
|
722
|
+
- test/data/standard-security-handler/bothpwd-arc4-128bit-V2.pdf
|
|
723
|
+
- test/data/standard-security-handler/bothpwd-arc4-128bit-V4.pdf
|
|
724
|
+
- test/data/standard-security-handler/bothpwd-arc4-40bit-V1.pdf
|
|
725
|
+
- test/data/standard-security-handler/nopwd-aes-128bit-V4.pdf
|
|
726
|
+
- test/data/standard-security-handler/nopwd-aes-256bit-V5-R5.pdf
|
|
727
|
+
- test/data/standard-security-handler/nopwd-aes-256bit-V5.pdf
|
|
728
|
+
- test/data/standard-security-handler/nopwd-arc4-128bit-V2.pdf
|
|
729
|
+
- test/data/standard-security-handler/nopwd-arc4-128bit-V4.pdf
|
|
730
|
+
- test/data/standard-security-handler/nopwd-arc4-40bit-V1.pdf
|
|
731
|
+
- test/data/standard-security-handler/ownerpwd-aes-128bit-V4.pdf
|
|
732
|
+
- test/data/standard-security-handler/ownerpwd-aes-256bit-V5-R5.pdf
|
|
733
|
+
- test/data/standard-security-handler/ownerpwd-aes-256bit-V5.pdf
|
|
734
|
+
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V2.pdf
|
|
735
|
+
- test/data/standard-security-handler/ownerpwd-arc4-128bit-V4.pdf
|
|
736
|
+
- test/data/standard-security-handler/ownerpwd-arc4-40bit-V1.pdf
|
|
737
|
+
- test/data/standard-security-handler/userpwd-aes-128bit-V4.pdf
|
|
738
|
+
- test/data/standard-security-handler/userpwd-aes-256bit-V5-R5.pdf
|
|
739
|
+
- test/data/standard-security-handler/userpwd-aes-256bit-V5.pdf
|
|
740
|
+
- test/data/standard-security-handler/userpwd-arc4-128bit-V2.pdf
|
|
741
|
+
- test/data/standard-security-handler/userpwd-arc4-128bit-V4.pdf
|
|
742
|
+
- test/data/standard-security-handler/userpwd-arc4-40bit-V1.pdf
|
|
743
|
+
- test/hexapdf/common_tokenizer_tests.rb
|
|
744
|
+
- test/hexapdf/content/graphic_object/test_arc.rb
|
|
745
|
+
- test/hexapdf/content/graphic_object/test_endpoint_arc.rb
|
|
746
|
+
- test/hexapdf/content/graphic_object/test_geom2d.rb
|
|
747
|
+
- test/hexapdf/content/graphic_object/test_solid_arc.rb
|
|
748
|
+
- test/hexapdf/content/test_canvas.rb
|
|
749
|
+
- test/hexapdf/content/test_canvas_composer.rb
|
|
750
|
+
- test/hexapdf/content/test_color_space.rb
|
|
751
|
+
- test/hexapdf/content/test_graphics_state.rb
|
|
752
|
+
- test/hexapdf/content/test_operator.rb
|
|
753
|
+
- test/hexapdf/content/test_parser.rb
|
|
754
|
+
- test/hexapdf/content/test_processor.rb
|
|
755
|
+
- test/hexapdf/content/test_smart_text_extractor.rb
|
|
756
|
+
- test/hexapdf/content/test_transformation_matrix.rb
|
|
757
|
+
- test/hexapdf/digital_signature/common.rb
|
|
758
|
+
- test/hexapdf/digital_signature/signing/test_default_handler.rb
|
|
759
|
+
- test/hexapdf/digital_signature/signing/test_signed_data_creator.rb
|
|
760
|
+
- test/hexapdf/digital_signature/signing/test_timestamp_handler.rb
|
|
761
|
+
- test/hexapdf/digital_signature/test_cms_handler.rb
|
|
762
|
+
- test/hexapdf/digital_signature/test_handler.rb
|
|
763
|
+
- test/hexapdf/digital_signature/test_pkcs1_handler.rb
|
|
764
|
+
- test/hexapdf/digital_signature/test_signature.rb
|
|
765
|
+
- test/hexapdf/digital_signature/test_signatures.rb
|
|
766
|
+
- test/hexapdf/digital_signature/test_signing.rb
|
|
767
|
+
- test/hexapdf/digital_signature/test_verification_result.rb
|
|
768
|
+
- test/hexapdf/document/test_annotations.rb
|
|
769
|
+
- test/hexapdf/document/test_destinations.rb
|
|
770
|
+
- test/hexapdf/document/test_files.rb
|
|
771
|
+
- test/hexapdf/document/test_fonts.rb
|
|
772
|
+
- test/hexapdf/document/test_images.rb
|
|
773
|
+
- test/hexapdf/document/test_layout.rb
|
|
774
|
+
- test/hexapdf/document/test_metadata.rb
|
|
775
|
+
- test/hexapdf/document/test_pages.rb
|
|
776
|
+
- test/hexapdf/encryption/common.rb
|
|
777
|
+
- test/hexapdf/encryption/test_aes.rb
|
|
778
|
+
- test/hexapdf/encryption/test_arc4.rb
|
|
779
|
+
- test/hexapdf/encryption/test_fast_aes.rb
|
|
780
|
+
- test/hexapdf/encryption/test_fast_arc4.rb
|
|
781
|
+
- test/hexapdf/encryption/test_identity.rb
|
|
782
|
+
- test/hexapdf/encryption/test_ruby_aes.rb
|
|
783
|
+
- test/hexapdf/encryption/test_ruby_arc4.rb
|
|
784
|
+
- test/hexapdf/encryption/test_security_handler.rb
|
|
785
|
+
- test/hexapdf/encryption/test_standard_security_handler.rb
|
|
786
|
+
- test/hexapdf/filter/common.rb
|
|
787
|
+
- test/hexapdf/filter/test_ascii85_decode.rb
|
|
788
|
+
- test/hexapdf/filter/test_ascii_hex_decode.rb
|
|
789
|
+
- test/hexapdf/filter/test_brotli_decode.rb
|
|
790
|
+
- test/hexapdf/filter/test_crypt.rb
|
|
791
|
+
- test/hexapdf/filter/test_encryption.rb
|
|
792
|
+
- test/hexapdf/filter/test_flate_decode.rb
|
|
793
|
+
- test/hexapdf/filter/test_lzw_decode.rb
|
|
794
|
+
- test/hexapdf/filter/test_predictor.rb
|
|
795
|
+
- test/hexapdf/filter/test_run_length_decode.rb
|
|
796
|
+
- test/hexapdf/font/cmap/test_parser.rb
|
|
797
|
+
- test/hexapdf/font/cmap/test_writer.rb
|
|
798
|
+
- test/hexapdf/font/encoding/test_base.rb
|
|
799
|
+
- test/hexapdf/font/encoding/test_difference_encoding.rb
|
|
800
|
+
- test/hexapdf/font/encoding/test_glyph_list.rb
|
|
801
|
+
- test/hexapdf/font/encoding/test_zapf_dingbats_encoding.rb
|
|
802
|
+
- test/hexapdf/font/test_cmap.rb
|
|
803
|
+
- test/hexapdf/font/test_encoding.rb
|
|
804
|
+
- test/hexapdf/font/test_invalid_glyph.rb
|
|
805
|
+
- test/hexapdf/font/test_true_type_wrapper.rb
|
|
806
|
+
- test/hexapdf/font/test_type1_wrapper.rb
|
|
807
|
+
- test/hexapdf/font/true_type/common.rb
|
|
808
|
+
- test/hexapdf/font/true_type/table/common.rb
|
|
809
|
+
- test/hexapdf/font/true_type/table/test_cmap.rb
|
|
810
|
+
- test/hexapdf/font/true_type/table/test_cmap_subtable.rb
|
|
811
|
+
- test/hexapdf/font/true_type/table/test_directory.rb
|
|
812
|
+
- test/hexapdf/font/true_type/table/test_glyf.rb
|
|
813
|
+
- test/hexapdf/font/true_type/table/test_head.rb
|
|
814
|
+
- test/hexapdf/font/true_type/table/test_hhea.rb
|
|
815
|
+
- test/hexapdf/font/true_type/table/test_hmtx.rb
|
|
816
|
+
- test/hexapdf/font/true_type/table/test_kern.rb
|
|
817
|
+
- test/hexapdf/font/true_type/table/test_loca.rb
|
|
818
|
+
- test/hexapdf/font/true_type/table/test_maxp.rb
|
|
819
|
+
- test/hexapdf/font/true_type/table/test_name.rb
|
|
820
|
+
- test/hexapdf/font/true_type/table/test_os2.rb
|
|
821
|
+
- test/hexapdf/font/true_type/table/test_post.rb
|
|
822
|
+
- test/hexapdf/font/true_type/test_builder.rb
|
|
823
|
+
- test/hexapdf/font/true_type/test_font.rb
|
|
824
|
+
- test/hexapdf/font/true_type/test_optimizer.rb
|
|
825
|
+
- test/hexapdf/font/true_type/test_subsetter.rb
|
|
826
|
+
- test/hexapdf/font/true_type/test_table.rb
|
|
827
|
+
- test/hexapdf/font/type1/common.rb
|
|
828
|
+
- test/hexapdf/font/type1/test_afm_parser.rb
|
|
829
|
+
- test/hexapdf/font/type1/test_font.rb
|
|
830
|
+
- test/hexapdf/font/type1/test_font_metrics.rb
|
|
831
|
+
- test/hexapdf/font/type1/test_pfb_parser.rb
|
|
832
|
+
- test/hexapdf/font_loader/test_from_configuration.rb
|
|
833
|
+
- test/hexapdf/font_loader/test_from_file.rb
|
|
834
|
+
- test/hexapdf/font_loader/test_standard14.rb
|
|
835
|
+
- test/hexapdf/font_loader/test_variant_from_name.rb
|
|
836
|
+
- test/hexapdf/image_loader/test_jpeg.rb
|
|
837
|
+
- test/hexapdf/image_loader/test_pdf.rb
|
|
838
|
+
- test/hexapdf/image_loader/test_png.rb
|
|
839
|
+
- test/hexapdf/layout/test_box.rb
|
|
840
|
+
- test/hexapdf/layout/test_box_fitter.rb
|
|
841
|
+
- test/hexapdf/layout/test_column_box.rb
|
|
842
|
+
- test/hexapdf/layout/test_container_box.rb
|
|
843
|
+
- test/hexapdf/layout/test_frame.rb
|
|
844
|
+
- test/hexapdf/layout/test_image_box.rb
|
|
845
|
+
- test/hexapdf/layout/test_inline_box.rb
|
|
846
|
+
- test/hexapdf/layout/test_line.rb
|
|
847
|
+
- test/hexapdf/layout/test_list_box.rb
|
|
848
|
+
- test/hexapdf/layout/test_page_style.rb
|
|
849
|
+
- test/hexapdf/layout/test_style.rb
|
|
850
|
+
- test/hexapdf/layout/test_table_box.rb
|
|
851
|
+
- test/hexapdf/layout/test_text_box.rb
|
|
852
|
+
- test/hexapdf/layout/test_text_fragment.rb
|
|
853
|
+
- test/hexapdf/layout/test_text_layouter.rb
|
|
854
|
+
- test/hexapdf/layout/test_text_shaper.rb
|
|
855
|
+
- test/hexapdf/layout/test_width_from_polygon.rb
|
|
856
|
+
- test/hexapdf/task/test_dereference.rb
|
|
857
|
+
- test/hexapdf/task/test_import_pages.rb
|
|
858
|
+
- test/hexapdf/task/test_merge_acro_form.rb
|
|
859
|
+
- test/hexapdf/task/test_optimize.rb
|
|
860
|
+
- test/hexapdf/task/test_pdfa.rb
|
|
861
|
+
- test/hexapdf/test_composer.rb
|
|
862
|
+
- test/hexapdf/test_configuration.rb
|
|
863
|
+
- test/hexapdf/test_data_dir.rb
|
|
864
|
+
- test/hexapdf/test_dictionary.rb
|
|
865
|
+
- test/hexapdf/test_dictionary_fields.rb
|
|
866
|
+
- test/hexapdf/test_document.rb
|
|
867
|
+
- test/hexapdf/test_filter.rb
|
|
868
|
+
- test/hexapdf/test_importer.rb
|
|
869
|
+
- test/hexapdf/test_object.rb
|
|
870
|
+
- test/hexapdf/test_parser.rb
|
|
871
|
+
- test/hexapdf/test_pdf_array.rb
|
|
872
|
+
- test/hexapdf/test_rectangle.rb
|
|
873
|
+
- test/hexapdf/test_reference.rb
|
|
874
|
+
- test/hexapdf/test_revision.rb
|
|
875
|
+
- test/hexapdf/test_revisions.rb
|
|
876
|
+
- test/hexapdf/test_serializer.rb
|
|
877
|
+
- test/hexapdf/test_stream.rb
|
|
878
|
+
- test/hexapdf/test_tokenizer.rb
|
|
879
|
+
- test/hexapdf/test_type.rb
|
|
880
|
+
- test/hexapdf/test_utils.rb
|
|
881
|
+
- test/hexapdf/test_writer.rb
|
|
882
|
+
- test/hexapdf/test_xref_section.rb
|
|
883
|
+
- test/hexapdf/type/acro_form/test_appearance_generator.rb
|
|
884
|
+
- test/hexapdf/type/acro_form/test_button_field.rb
|
|
885
|
+
- test/hexapdf/type/acro_form/test_choice_field.rb
|
|
886
|
+
- test/hexapdf/type/acro_form/test_field.rb
|
|
887
|
+
- test/hexapdf/type/acro_form/test_form.rb
|
|
888
|
+
- test/hexapdf/type/acro_form/test_java_script_actions.rb
|
|
889
|
+
- test/hexapdf/type/acro_form/test_signature_field.rb
|
|
890
|
+
- test/hexapdf/type/acro_form/test_text_field.rb
|
|
891
|
+
- test/hexapdf/type/acro_form/test_variable_text_field.rb
|
|
892
|
+
- test/hexapdf/type/actions/test_launch.rb
|
|
893
|
+
- test/hexapdf/type/actions/test_set_ocg_state.rb
|
|
894
|
+
- test/hexapdf/type/actions/test_uri.rb
|
|
895
|
+
- test/hexapdf/type/annotations/test_appearance_generator.rb
|
|
896
|
+
- test/hexapdf/type/annotations/test_border_effect.rb
|
|
897
|
+
- test/hexapdf/type/annotations/test_border_styling.rb
|
|
898
|
+
- test/hexapdf/type/annotations/test_ink.rb
|
|
899
|
+
- test/hexapdf/type/annotations/test_interior_color.rb
|
|
900
|
+
- test/hexapdf/type/annotations/test_line.rb
|
|
901
|
+
- test/hexapdf/type/annotations/test_line_ending_styling.rb
|
|
902
|
+
- test/hexapdf/type/annotations/test_markup_annotation.rb
|
|
903
|
+
- test/hexapdf/type/annotations/test_polygon_polyline.rb
|
|
904
|
+
- test/hexapdf/type/annotations/test_text.rb
|
|
905
|
+
- test/hexapdf/type/annotations/test_widget.rb
|
|
906
|
+
- test/hexapdf/type/test_annotation.rb
|
|
907
|
+
- test/hexapdf/type/test_catalog.rb
|
|
908
|
+
- test/hexapdf/type/test_cid_font.rb
|
|
909
|
+
- test/hexapdf/type/test_document_security_store.rb
|
|
910
|
+
- test/hexapdf/type/test_file_specification.rb
|
|
911
|
+
- test/hexapdf/type/test_font.rb
|
|
912
|
+
- test/hexapdf/type/test_font_descriptor.rb
|
|
913
|
+
- test/hexapdf/type/test_font_simple.rb
|
|
914
|
+
- test/hexapdf/type/test_font_true_type.rb
|
|
915
|
+
- test/hexapdf/type/test_font_type0.rb
|
|
916
|
+
- test/hexapdf/type/test_font_type1.rb
|
|
917
|
+
- test/hexapdf/type/test_font_type3.rb
|
|
918
|
+
- test/hexapdf/type/test_form.rb
|
|
919
|
+
- test/hexapdf/type/test_image.rb
|
|
920
|
+
- test/hexapdf/type/test_info.rb
|
|
921
|
+
- test/hexapdf/type/test_names.rb
|
|
922
|
+
- test/hexapdf/type/test_object_stream.rb
|
|
923
|
+
- test/hexapdf/type/test_optional_content_configuration.rb
|
|
924
|
+
- test/hexapdf/type/test_optional_content_group.rb
|
|
925
|
+
- test/hexapdf/type/test_optional_content_properties.rb
|
|
926
|
+
- test/hexapdf/type/test_outline.rb
|
|
927
|
+
- test/hexapdf/type/test_outline_item.rb
|
|
928
|
+
- test/hexapdf/type/test_page.rb
|
|
929
|
+
- test/hexapdf/type/test_page_label.rb
|
|
930
|
+
- test/hexapdf/type/test_page_tree_node.rb
|
|
931
|
+
- test/hexapdf/type/test_resources.rb
|
|
932
|
+
- test/hexapdf/type/test_trailer.rb
|
|
933
|
+
- test/hexapdf/type/test_xref_stream.rb
|
|
934
|
+
- test/hexapdf/utils/test_bit_field.rb
|
|
935
|
+
- test/hexapdf/utils/test_bit_stream.rb
|
|
936
|
+
- test/hexapdf/utils/test_graphics_helpers.rb
|
|
937
|
+
- test/hexapdf/utils/test_lru_cache.rb
|
|
938
|
+
- test/hexapdf/utils/test_object_hash.rb
|
|
939
|
+
- test/hexapdf/utils/test_pdf_doc_encoding.rb
|
|
940
|
+
- test/hexapdf/utils/test_sorted_tree_node.rb
|
|
941
|
+
- test/test_helper.rb
|
|
942
|
+
homepage: "https://hexapdf.gettalong.org"
|
|
910
943
|
licenses:
|
|
911
|
-
- AGPL-3.0
|
|
912
|
-
- Nonstandard
|
|
944
|
+
- AGPL-3.0
|
|
945
|
+
- Nonstandard
|
|
913
946
|
metadata: {}
|
|
914
947
|
rdoc_options: []
|
|
915
948
|
require_paths:
|
|
916
|
-
- lib
|
|
949
|
+
- lib
|
|
917
950
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
918
951
|
requirements:
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
952
|
+
-
|
|
953
|
+
- ">="
|
|
954
|
+
- !ruby/object:Gem::Version
|
|
955
|
+
version: "2.7"
|
|
922
956
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
923
957
|
requirements:
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
958
|
+
-
|
|
959
|
+
- ">="
|
|
960
|
+
- !ruby/object:Gem::Version
|
|
961
|
+
version: "0"
|
|
927
962
|
requirements: []
|
|
928
|
-
rubygems_version: 4.0.
|
|
963
|
+
rubygems_version: 4.1.0.beta1
|
|
929
964
|
specification_version: 4
|
|
930
965
|
summary: HexaPDF - A Versatile PDF Creation and Manipulation Library For Ruby
|
|
931
966
|
test_files: []
|