combine_pdf 0.2.5 → 0.2.37
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/CHANGELOG.md +273 -27
- data/LICENSE.txt +2 -1
- data/README.md +69 -4
- data/lib/combine_pdf/api.rb +156 -153
- data/lib/combine_pdf/basic_writer.rb +41 -53
- data/lib/combine_pdf/decrypt.rb +238 -228
- data/lib/combine_pdf/exceptions.rb +4 -0
- data/lib/combine_pdf/filter.rb +79 -85
- data/lib/combine_pdf/fonts.rb +451 -462
- data/lib/combine_pdf/page_methods.rb +891 -946
- data/lib/combine_pdf/parser.rb +663 -531
- data/lib/combine_pdf/pdf_protected.rb +341 -126
- data/lib/combine_pdf/pdf_public.rb +492 -454
- data/lib/combine_pdf/renderer.rb +146 -141
- data/lib/combine_pdf/version.rb +1 -2
- data/lib/combine_pdf.rb +14 -18
- data/test/automated +132 -0
- data/test/console +4 -4
- data/test/named_dest +84 -0
- metadata +8 -5
- data/lib/combine_pdf/operations.rb +0 -416
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: combine_pdf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.37
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boaz Segev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-rc4
|
@@ -72,16 +72,18 @@ files:
|
|
72
72
|
- lib/combine_pdf/api.rb
|
73
73
|
- lib/combine_pdf/basic_writer.rb
|
74
74
|
- lib/combine_pdf/decrypt.rb
|
75
|
+
- lib/combine_pdf/exceptions.rb
|
75
76
|
- lib/combine_pdf/filter.rb
|
76
77
|
- lib/combine_pdf/fonts.rb
|
77
|
-
- lib/combine_pdf/operations.rb
|
78
78
|
- lib/combine_pdf/page_methods.rb
|
79
79
|
- lib/combine_pdf/parser.rb
|
80
80
|
- lib/combine_pdf/pdf_protected.rb
|
81
81
|
- lib/combine_pdf/pdf_public.rb
|
82
82
|
- lib/combine_pdf/renderer.rb
|
83
83
|
- lib/combine_pdf/version.rb
|
84
|
+
- test/automated
|
84
85
|
- test/console
|
86
|
+
- test/named_dest
|
85
87
|
homepage: https://github.com/boazsegev/combine_pdf
|
86
88
|
licenses:
|
87
89
|
- MIT
|
@@ -102,10 +104,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
104
|
version: '0'
|
103
105
|
requirements: []
|
104
106
|
rubyforge_project:
|
105
|
-
rubygems_version: 2.
|
107
|
+
rubygems_version: 2.6.8
|
106
108
|
signing_key:
|
107
109
|
specification_version: 4
|
108
110
|
summary: Combine, stamp and watermark PDF files in pure Ruby.
|
109
111
|
test_files:
|
112
|
+
- test/automated
|
110
113
|
- test/console
|
111
|
-
|
114
|
+
- test/named_dest
|
@@ -1,416 +0,0 @@
|
|
1
|
-
module CombinePDF
|
2
|
-
|
3
|
-
################################################################
|
4
|
-
## These are common functions, used within the different classes
|
5
|
-
## These functions aren't open to the public.
|
6
|
-
################################################################
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
# holds a simple content stream that starts a PDF graphic state container - used for wrapping malformed PDF content streams.
|
11
|
-
CONTENT_CONTAINER_START = { is_reference_only: true , referenced_object: {indirect_reference_id: 0, raw_stream_content: 'q'} }
|
12
|
-
# holds a simple content stream that ends a PDF graphic state container - used for wrapping malformed PDF content streams.
|
13
|
-
CONTENT_CONTAINER_MIDDLE = { is_reference_only: true , referenced_object: {indirect_reference_id: 0, raw_stream_content: "Q\nq"} }
|
14
|
-
# holds a simple content stream that ends a PDF graphic state container - used for wrapping malformed PDF content streams.
|
15
|
-
CONTENT_CONTAINER_END = { is_reference_only: true , referenced_object: {indirect_reference_id: 0, raw_stream_content: 'Q'} }
|
16
|
-
|
17
|
-
# @private
|
18
|
-
# @!visibility private
|
19
|
-
#:nodoc: all
|
20
|
-
|
21
|
-
protected
|
22
|
-
|
23
|
-
# @!visibility private
|
24
|
-
|
25
|
-
# This is an internal class. you don't need it.
|
26
|
-
module PDFOperations
|
27
|
-
|
28
|
-
module_function
|
29
|
-
|
30
|
-
# @!visibility private
|
31
|
-
|
32
|
-
def inject_to_page page = {Type: :Page, MediaBox: [0,0,612.0,792.0], Resources: {}, Contents: []}, stream = nil, top = true
|
33
|
-
# make sure both the page reciving the new data and the injected page are of the correct data type.
|
34
|
-
return false unless page.is_a?(Hash) && stream.is_a?(Hash)
|
35
|
-
|
36
|
-
# following the reference chain and assigning a pointer to the correct Resouces object.
|
37
|
-
# (assignments of Strings, Arrays and Hashes are pointers in Ruby, unless the .dup method is called)
|
38
|
-
page[:Resources] ||= {}
|
39
|
-
original_resources = page[:Resources]
|
40
|
-
if original_resources[:is_reference_only]
|
41
|
-
original_resources = original_resources[:referenced_object]
|
42
|
-
raise "Couldn't tap into resources dictionary, as it is a reference and isn't linked." unless original_resources
|
43
|
-
end
|
44
|
-
original_contents = page[:Contents]
|
45
|
-
original_contents = [original_contents] unless original_contents.is_a? Array
|
46
|
-
|
47
|
-
stream[:Resources] ||= {}
|
48
|
-
stream_resources = stream[:Resources]
|
49
|
-
if stream_resources[:is_reference_only]
|
50
|
-
stream_resources = stream_resources[:referenced_object]
|
51
|
-
raise "Couldn't tap into resources dictionary, as it is a reference and isn't linked." unless stream_resources
|
52
|
-
end
|
53
|
-
stream_contents = stream[:Contents]
|
54
|
-
stream_contents = [stream_contents] unless stream_contents.is_a? Array
|
55
|
-
|
56
|
-
# collect keys as objects - this is to make sure that
|
57
|
-
# we are working on the actual resource data, rather then references
|
58
|
-
flatten_resources_dictionaries stream_resources
|
59
|
-
flatten_resources_dictionaries original_resources
|
60
|
-
|
61
|
-
# injecting each of the values in the injected Page
|
62
|
-
stream_resources.each do |key, new_val|
|
63
|
-
unless PRIVATE_HASH_KEYS.include? key # keep CombinePDF structual data intact.
|
64
|
-
if original_resources[key].nil?
|
65
|
-
original_resources[key] = new_val
|
66
|
-
elsif original_resources[key].is_a?(Hash) && new_val.is_a?(Hash)
|
67
|
-
new_val.update original_resources[key] # make sure the old values are respected
|
68
|
-
original_resources[key].update new_val # transfer old and new values to the injected page
|
69
|
-
end #Do nothing if array - ot is the PROC array, which is an issue
|
70
|
-
end
|
71
|
-
end
|
72
|
-
original_resources[:ProcSet] = [:PDF, :Text, :ImageB, :ImageC, :ImageI] # this was recommended by the ISO. 32000-1:2008
|
73
|
-
|
74
|
-
if top # if this is a stamp (overlay)
|
75
|
-
page[:Contents] = original_contents
|
76
|
-
page[:Contents].unshift create_deep_copy(CONTENT_CONTAINER_START)
|
77
|
-
page[:Contents].push create_deep_copy(CONTENT_CONTAINER_MIDDLE)
|
78
|
-
page[:Contents].push *stream_contents
|
79
|
-
page[:Contents].push create_deep_copy(CONTENT_CONTAINER_END)
|
80
|
-
else #if this was a watermark (underlay? would be lost if the page was scanned, as white might not be transparent)
|
81
|
-
page[:Contents] = stream_contents
|
82
|
-
page[:Contents].unshift create_deep_copy(CONTENT_CONTAINER_START)
|
83
|
-
page[:Contents].push create_deep_copy(CONTENT_CONTAINER_MIDDLE)
|
84
|
-
page[:Contents].push *original_contents
|
85
|
-
page[:Contents].push create_deep_copy(CONTENT_CONTAINER_END)
|
86
|
-
end
|
87
|
-
|
88
|
-
page
|
89
|
-
end
|
90
|
-
# copy_and_secure_for_injection(page)
|
91
|
-
# - page is a page in the pages array, i.e.
|
92
|
-
# pdf.pages[0]
|
93
|
-
# takes a page object and:
|
94
|
-
#
|
95
|
-
# makes a deep copy of the page (Ruby defaults to pointers, so this will copy the memory).
|
96
|
-
#
|
97
|
-
# then it will rewrite the content stream with renamed resources, so as to avoid name conflicts.
|
98
|
-
def copy_and_secure_for_injection(page)
|
99
|
-
# copy page
|
100
|
-
new_page = create_deep_copy page
|
101
|
-
|
102
|
-
# initiate dictionary from old names to new names
|
103
|
-
names_dictionary = {}
|
104
|
-
|
105
|
-
# itirate through all keys that are name objects and give them new names (add to dic)
|
106
|
-
# this should be done for every dictionary in :Resources
|
107
|
-
# this is a few steps stage:
|
108
|
-
|
109
|
-
# 1. get resources object
|
110
|
-
resources = new_page[:Resources]
|
111
|
-
if resources[:is_reference_only]
|
112
|
-
resources = resources[:referenced_object]
|
113
|
-
raise "Couldn't tap into resources dictionary, as it is a reference and isn't linked." unless resources
|
114
|
-
end
|
115
|
-
|
116
|
-
# 2. establich direct access to dictionaries and remove reference values
|
117
|
-
flatten_resources_dictionaries resources
|
118
|
-
|
119
|
-
# 3. travel every dictionary to pick up names (keys), change them and add them to the dictionary
|
120
|
-
resources.each do |k,v|
|
121
|
-
if v.is_a?(Hash)
|
122
|
-
new_dictionary = {}
|
123
|
-
new_name = "Combine" + SecureRandom.hex(7) + "PDF"
|
124
|
-
i = 1
|
125
|
-
v.each do |old_key, value|
|
126
|
-
new_key = (new_name + i.to_s).to_sym
|
127
|
-
names_dictionary[old_key] = new_key
|
128
|
-
new_dictionary[new_key] = value
|
129
|
-
i += 1
|
130
|
-
end
|
131
|
-
resources[k] = new_dictionary
|
132
|
-
end
|
133
|
-
end
|
134
|
-
|
135
|
-
# now that we have replaced the names in the resources dictionaries,
|
136
|
-
# it is time to replace the names inside the stream
|
137
|
-
# we will need to make sure we have access to the stream injected
|
138
|
-
# we will user PDFFilter.inflate_object
|
139
|
-
(new_page[:Contents].is_a?(Array) ? new_page[:Contents] : [new_page[:Contents] ]).each do |c|
|
140
|
-
stream = c[:referenced_object]
|
141
|
-
PDFFilter.inflate_object stream
|
142
|
-
names_dictionary.each do |old_key, new_key|
|
143
|
-
stream[:raw_stream_content].gsub! _object_to_pdf(old_key), _object_to_pdf(new_key) ##### PRAY(!) that the parsed datawill be correctly reproduced!
|
144
|
-
end
|
145
|
-
# patch back to PDF defaults, for OCRed PDF files.
|
146
|
-
# stream[:raw_stream_content] = "q\nq\nq\nDeviceRGB CS\nDeviceRGB cs\n0 0 0 rg\n0 0 0 RG\n0 Tr\n%s\nQ\nQ\nQ\n" % stream[:raw_stream_content]
|
147
|
-
# the following was removed for Acrobat Reader compatability: DeviceRGB CS\nDeviceRGB cs\n
|
148
|
-
stream[:raw_stream_content] = "q\nq\nq\n0 0 0 rg\n0 0 0 RG\n0 Tr\n1 0 0 1 0 0 cm\n%s\nQ\nQ\nQ\n" % stream[:raw_stream_content]
|
149
|
-
end
|
150
|
-
|
151
|
-
new_page
|
152
|
-
end
|
153
|
-
def flatten_resources_dictionaries(resources)
|
154
|
-
resources.each do |k,v|
|
155
|
-
if v.is_a?(Hash) && v[:is_reference_only]
|
156
|
-
if v[:referenced_object]
|
157
|
-
resources[k] = resources[k][:referenced_object].dup
|
158
|
-
resources[k].delete(:indirect_reference_id)
|
159
|
-
resources[k].delete(:indirect_generation_number)
|
160
|
-
elsif v[:indirect_without_dictionary]
|
161
|
-
resources[k] = resources[k][:indirect_without_dictionary]
|
162
|
-
end
|
163
|
-
end
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
# returns the PDF Object Hash holding the acutal data (if exists) or the original hash (if it wasn't a reference)
|
168
|
-
#
|
169
|
-
# works only AFTER references have been connected.
|
170
|
-
def get_referenced object
|
171
|
-
object[:referenced_object] || object
|
172
|
-
end
|
173
|
-
|
174
|
-
|
175
|
-
# Ruby normally assigns pointes.
|
176
|
-
# noramlly:
|
177
|
-
# a = [1,2,3] # => [1,2,3]
|
178
|
-
# b = a # => [1,2,3]
|
179
|
-
# a << 4 # => [1,2,3,4]
|
180
|
-
# b # => [1,2,3,4]
|
181
|
-
# This method makes sure that the memory is copied instead of a pointer assigned.
|
182
|
-
# this works using recursion, so that arrays and hashes within arrays and hashes are also copied and not pointed to.
|
183
|
-
# One needs to be careful of infinit loops using this function.
|
184
|
-
def create_deep_copy object
|
185
|
-
if object.is_a?(Array)
|
186
|
-
return object.map { |e| create_deep_copy e }
|
187
|
-
elsif object.is_a?(Hash)
|
188
|
-
return {}.tap {|out| object.each {|k,v| out[create_deep_copy(k)] = create_deep_copy(v) unless k == :Parent} }
|
189
|
-
elsif object.is_a?(String)
|
190
|
-
return object.dup
|
191
|
-
else
|
192
|
-
return object # objects that aren't Strings, Arrays or Hashes (such as Symbols and Fixnums) won't be edited inplace.
|
193
|
-
end
|
194
|
-
end
|
195
|
-
# removes id and generation number values, for better comparrison
|
196
|
-
# and avoiding object duplication
|
197
|
-
# objects:: one or more objects in a PDF file/page.
|
198
|
-
def remove_old_ids objects
|
199
|
-
_each_object(objects) {|obj| obj.delete(:indirect_reference_id); obj.delete(:indirect_generation_number)}
|
200
|
-
end
|
201
|
-
def get_refernced_object(objects_array = [], reference_hash = {})
|
202
|
-
objects_array.each do |stored_object|
|
203
|
-
return stored_object if ( stored_object.is_a?(Hash) &&
|
204
|
-
reference_hash[:indirect_reference_id] == stored_object[:indirect_reference_id] &&
|
205
|
-
reference_hash[:indirect_generation_number] == stored_object[:indirect_generation_number] )
|
206
|
-
end
|
207
|
-
warn "didn't find reference #{reference_hash}"
|
208
|
-
nil
|
209
|
-
end
|
210
|
-
def change_references_to_actual_values(objects_array = [], hash_with_references = {})
|
211
|
-
hash_with_references.each do |k,v|
|
212
|
-
if v.is_a?(Hash) && v[:is_reference_only]
|
213
|
-
hash_with_references[k] = PDFOperations.get_refernced_object( objects_array, v)
|
214
|
-
hash_with_references[k] = hash_with_references[k][:indirect_without_dictionary] if hash_with_references[k].is_a?(Hash) && hash_with_references[k][:indirect_without_dictionary]
|
215
|
-
warn "Couldn't connect all values from references - didn't find reference #{hash_with_references}!!!" if hash_with_references[k] == nil
|
216
|
-
hash_with_references[k] = v unless hash_with_references[k]
|
217
|
-
end
|
218
|
-
end
|
219
|
-
hash_with_references
|
220
|
-
end
|
221
|
-
def change_connected_references_to_actual_values(hash_with_references = {})
|
222
|
-
if hash_with_references.is_a?(Hash)
|
223
|
-
hash_with_references.each do |k,v|
|
224
|
-
if v.is_a?(Hash) && v[:is_reference_only]
|
225
|
-
if v[:indirect_without_dictionary]
|
226
|
-
hash_with_references[k] = v[:indirect_without_dictionary]
|
227
|
-
elsif v[:referenced_object]
|
228
|
-
hash_with_references[k] = v[:referenced_object]
|
229
|
-
else
|
230
|
-
raise "Cannot change references to values, as they are disconnected!"
|
231
|
-
end
|
232
|
-
end
|
233
|
-
end
|
234
|
-
hash_with_references.each {|k, v| change_connected_references_to_actual_values(v) if v.is_a?(Hash) || v.is_a?(Array)}
|
235
|
-
elsif hash_with_references.is_a?(Array)
|
236
|
-
hash_with_references.each {|item| change_connected_references_to_actual_values(item) if item.is_a?(Hash) || item.is_a?(Array)}
|
237
|
-
end
|
238
|
-
hash_with_references
|
239
|
-
end
|
240
|
-
def connect_references_and_actual_values(objects_array = [], hash_with_references = {})
|
241
|
-
ret = true
|
242
|
-
hash_with_references.each do |k,v|
|
243
|
-
if v.is_a?(Hash) && v[:is_reference_only]
|
244
|
-
ref_obj = PDFOperations.get_refernced_object( objects_array, v)
|
245
|
-
hash_with_references[k] = ref_obj[:indirect_without_dictionary] if ref_obj.is_a?(Hash) && ref_obj[:indirect_without_dictionary]
|
246
|
-
ret = false
|
247
|
-
end
|
248
|
-
end
|
249
|
-
ret
|
250
|
-
end
|
251
|
-
|
252
|
-
|
253
|
-
def _each_object(object, limit_references = true, first_call = true, &block)
|
254
|
-
# #####################
|
255
|
-
# ## v.1.2 needs optimazation
|
256
|
-
# case
|
257
|
-
# when object.is_a?(Array)
|
258
|
-
# object.each {|obj| _each_object(obj, limit_references, &block)}
|
259
|
-
# when object.is_a?(Hash)
|
260
|
-
# yield(object)
|
261
|
-
# object.each do |k,v|
|
262
|
-
# unless (limit_references && k == :referenced_object)
|
263
|
-
# unless k == :Parent
|
264
|
-
# _each_object(v, limit_references, &block)
|
265
|
-
# end
|
266
|
-
# end
|
267
|
-
# end
|
268
|
-
# end
|
269
|
-
#####################
|
270
|
-
## v.2.1 needs optimazation
|
271
|
-
## version 2.1 is slightly faster then v.1.2
|
272
|
-
@already_visited = [] if first_call
|
273
|
-
unless limit_references
|
274
|
-
@already_visited << object.object_id
|
275
|
-
end
|
276
|
-
case
|
277
|
-
when object.is_a?(Array)
|
278
|
-
object.each {|obj| _each_object(obj, limit_references, false, &block)}
|
279
|
-
when object.is_a?(Hash)
|
280
|
-
yield(object)
|
281
|
-
unless limit_references && object[:is_reference_only]
|
282
|
-
object.each do |k,v|
|
283
|
-
_each_object(v, limit_references, false, &block) unless @already_visited.include? v.object_id
|
284
|
-
end
|
285
|
-
end
|
286
|
-
end
|
287
|
-
end
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
# Formats an object into PDF format. This is used my the PDF object to format the PDF file and it is used in the secure injection which is still being developed.
|
292
|
-
def _object_to_pdf object
|
293
|
-
case
|
294
|
-
when object.nil?
|
295
|
-
return "null"
|
296
|
-
when object.is_a?(String)
|
297
|
-
return _format_string_to_pdf object
|
298
|
-
when object.is_a?(Symbol)
|
299
|
-
return _format_name_to_pdf object
|
300
|
-
when object.is_a?(Array)
|
301
|
-
return _format_array_to_pdf object
|
302
|
-
when object.is_a?(Fixnum), object.is_a?(Float), object.is_a?(TrueClass), object.is_a?(FalseClass)
|
303
|
-
return object.to_s + " "
|
304
|
-
when object.is_a?(Hash)
|
305
|
-
return _format_hash_to_pdf object
|
306
|
-
else
|
307
|
-
return ''
|
308
|
-
end
|
309
|
-
end
|
310
|
-
|
311
|
-
def _format_string_to_pdf(object)
|
312
|
-
if @string_output == :literal #if format is set to Literal
|
313
|
-
#### can be better...
|
314
|
-
replacement_hash = {
|
315
|
-
"\x0A" => "\\n",
|
316
|
-
"\x0D" => "\\r",
|
317
|
-
"\x09" => "\\t",
|
318
|
-
"\x08" => "\\b",
|
319
|
-
"\xFF" => "\\f",
|
320
|
-
"\x28" => "\\(",
|
321
|
-
"\x29" => "\\)",
|
322
|
-
"\x5C" => "\\\\"
|
323
|
-
}
|
324
|
-
32.times {|i| replacement_hash[i.chr] ||= "\\#{i}"}
|
325
|
-
(256-128).times {|i| replacement_hash[(i + 127).chr] ||= "\\#{i+127}"}
|
326
|
-
("(" + ([].tap {|out| object.bytes.each {|byte| replacement_hash[ byte.chr ] ? (replacement_hash[ byte.chr ].bytes.each {|b| out << b}) : out << byte } }).pack('C*') + ")").force_encoding(Encoding::ASCII_8BIT)
|
327
|
-
else
|
328
|
-
# A hexadecimal string shall be written as a sequence of hexadecimal digits (0–9 and either A–F or a–f)
|
329
|
-
# encoded as ASCII characters and enclosed within angle brackets (using LESS-THAN SIGN (3Ch) and GREATER- THAN SIGN (3Eh)).
|
330
|
-
("<" + object.unpack('H*')[0] + ">").force_encoding(Encoding::ASCII_8BIT)
|
331
|
-
end
|
332
|
-
end
|
333
|
-
def _format_name_to_pdf(object)
|
334
|
-
# a name object is an atomic symbol uniquely defined by a sequence of ANY characters (8-bit values) except null (character code 0).
|
335
|
-
# print name as a simple string. all characters between ~ and ! (except #) can be raw
|
336
|
-
# the rest will have a number sign and their HEX equivalant
|
337
|
-
# from the standard:
|
338
|
-
# When writing a name in a PDF file, a SOLIDUS (2Fh) (/) shall be used to introduce a name. The SOLIDUS is not part of the name but is a prefix indicating that what follows is a sequence of characters representing the name in the PDF file and shall follow these rules:
|
339
|
-
# a) A NUMBER SIGN (23h) (#) in a name shall be written by using its 2-digit hexadecimal code (23), preceded by the NUMBER SIGN.
|
340
|
-
# b) Any character in a name that is a regular character (other than NUMBER SIGN) shall be written as itself or by using its 2-digit hexadecimal code, preceded by the NUMBER SIGN.
|
341
|
-
# c) Any character that is not a regular character shall be written using its 2-digit hexadecimal code, preceded by the NUMBER SIGN only.
|
342
|
-
# [0x00, 0x09, 0x0a, 0x0c, 0x0d, 0x20, 0x28, 0x29, 0x3c, 0x3e, 0x5b, 0x5d, 0x7b, 0x7d, 0x2f, 0x25]
|
343
|
-
out = object.to_s.bytes.to_a.map do |b|
|
344
|
-
case b
|
345
|
-
when 0..15
|
346
|
-
'#0' + b.to_s(16)
|
347
|
-
when 15..32, 35, 37, 40, 41, 47, 60, 62, 91, 93, 123, 125, 127..256
|
348
|
-
'#' + b.to_s(16)
|
349
|
-
else
|
350
|
-
b.chr
|
351
|
-
end
|
352
|
-
end
|
353
|
-
"/" + out.join()
|
354
|
-
end
|
355
|
-
def _format_array_to_pdf(object)
|
356
|
-
# An array shall be written as a sequence of objects enclosed in SQUARE BRACKETS (using LEFT SQUARE BRACKET (5Bh) and RIGHT SQUARE BRACKET (5Dh)).
|
357
|
-
# EXAMPLE [549 3.14 false (Ralph) /SomeName]
|
358
|
-
("[" + (object.collect {|item| _object_to_pdf(item)}).join(' ') + "]").force_encoding(Encoding::ASCII_8BIT)
|
359
|
-
|
360
|
-
end
|
361
|
-
|
362
|
-
def _format_hash_to_pdf(object)
|
363
|
-
# if the object is only a reference:
|
364
|
-
# special conditions apply, and there is only the setting of the reference (if needed) and output
|
365
|
-
if object[:is_reference_only]
|
366
|
-
#
|
367
|
-
if object[:referenced_object] && object[:referenced_object].is_a?(Hash)
|
368
|
-
object[:indirect_reference_id] = object[:referenced_object][:indirect_reference_id]
|
369
|
-
object[:indirect_generation_number] = object[:referenced_object][:indirect_generation_number]
|
370
|
-
end
|
371
|
-
object[:indirect_reference_id] ||= 0
|
372
|
-
object[:indirect_generation_number] ||= 0
|
373
|
-
return "#{object[:indirect_reference_id].to_s} #{object[:indirect_generation_number].to_s} R".force_encoding(Encoding::ASCII_8BIT)
|
374
|
-
end
|
375
|
-
|
376
|
-
# if the object is indirect...
|
377
|
-
out = []
|
378
|
-
if object[:indirect_reference_id]
|
379
|
-
object[:indirect_reference_id] ||= 0
|
380
|
-
object[:indirect_generation_number] ||= 0
|
381
|
-
out << "#{object[:indirect_reference_id].to_s} #{object[:indirect_generation_number].to_s} obj\n".force_encoding(Encoding::ASCII_8BIT)
|
382
|
-
if object[:indirect_without_dictionary]
|
383
|
-
out << _object_to_pdf(object[:indirect_without_dictionary])
|
384
|
-
out << "\nendobj\n"
|
385
|
-
return out.join().force_encoding(Encoding::ASCII_8BIT)
|
386
|
-
end
|
387
|
-
end
|
388
|
-
# correct stream length, if the object is a stream.
|
389
|
-
object[:Length] = object[:raw_stream_content].bytesize if object[:raw_stream_content]
|
390
|
-
|
391
|
-
# if the object is not a simple object, it is a dictionary
|
392
|
-
# A dictionary shall be written as a sequence of key-value pairs enclosed in double angle brackets (<<...>>)
|
393
|
-
# (using LESS-THAN SIGNs (3Ch) and GREATER-THAN SIGNs (3Eh)).
|
394
|
-
out << "<<\n".force_encoding(Encoding::ASCII_8BIT)
|
395
|
-
object.each do |key, value|
|
396
|
-
out << "#{_object_to_pdf key} #{_object_to_pdf value}\n".force_encoding(Encoding::ASCII_8BIT) unless PRIVATE_HASH_KEYS.include? key
|
397
|
-
end
|
398
|
-
out << ">>".force_encoding(Encoding::ASCII_8BIT)
|
399
|
-
out << "\nstream\n#{object[:raw_stream_content]}\nendstream".force_encoding(Encoding::ASCII_8BIT) if object[:raw_stream_content]
|
400
|
-
out << "\nendobj\n" if object[:indirect_reference_id]
|
401
|
-
out.join().force_encoding(Encoding::ASCII_8BIT)
|
402
|
-
end
|
403
|
-
end
|
404
|
-
end
|
405
|
-
|
406
|
-
#########################################################
|
407
|
-
# this file is part of the CombinePDF library and the code
|
408
|
-
# is subject to the same license (MIT).
|
409
|
-
#########################################################
|
410
|
-
# PDF object types cross reference:
|
411
|
-
# Indirect objects, references, dictionaries and streams are Hash
|
412
|
-
# arrays are Array
|
413
|
-
# strings are String
|
414
|
-
# names are Symbols (String.to_sym)
|
415
|
-
# numbers are Fixnum or Float
|
416
|
-
# boolean are TrueClass or FalseClass
|