combine_pdf 1.0.28 → 1.0.30beta
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 +14 -0
- data/lib/combine_pdf/basic_writer.rb +1 -1
- data/lib/combine_pdf/parser.rb +17 -14
- data/lib/combine_pdf/renderer.rb +5 -5
- data/lib/combine_pdf/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f990d5b448b0b5e1949e59d2432b3b43ee394ab6bf5ba94fcbcc5ce94d8b856
|
4
|
+
data.tar.gz: 326d40396956ba3472b3535217df4bec94d72f368dfd30da53b31a5697f04113
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1548c3e004f118d92189b81466f6bb4e2d202fb7b60ec12df3ce2dafb96ac0f44789d873b2a9409110e610aea59e49b83fcb6f141bd7aa48146e90719655624
|
7
|
+
data.tar.gz: 81532eb10fe68f024566df811ab953f7f15c16fd007683d6210a6b6b6b4729931b1b1dcc2b9252a19f7c0d785f8c8610401f5c25f7bb5bb2e5b691447e35d030
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
#### Change log v.1.0.31 (2025-04-03)
|
4
|
+
|
5
|
+
**Fix**: frozen string literal lingering issues. Credit to @pauline-koch, @qdegraeve, @isaporto, @ncreuschling, @francescob, @@anthonykaufman and @ma-matsui for their input on this issue. Credit to @anthonykaufman for offering one possible solution and @Markus-Munk-Shipmondo for pushing on this.
|
6
|
+
|
7
|
+
**Fix**: possible permission issues. Credit to @davidwessman, @visini, @sander-deryckere, and @LindseySaari for exploring this.
|
8
|
+
|
9
|
+
**Fix**: calling CombinePDF.parse with a frozen string literal. Credit to @lovro-bikic for offering one possible solution.
|
10
|
+
|
11
|
+
**Fix**: Ruby 3.4 warning. Credit to @chaadow for offering one possible solution.
|
12
|
+
|
13
|
+
#### Change log v.1.0.29 (2024-12-07)
|
14
|
+
|
15
|
+
**Fix**: frozen string literal support fix. Credit to @francescob (Francesco) for PR #245.
|
16
|
+
|
3
17
|
#### Change log v.1.0.28 (2024-11-12)
|
4
18
|
|
5
19
|
**Fix**: use `require` to load code (instead of `load`). Credit to @casperisfine (Jean byroot Boussier) for PR #216.
|
@@ -36,7 +36,7 @@ module CombinePDF
|
|
36
36
|
# mediabox:: the PDF page size in PDF points. defaults to [0, 0, 612.0, 792.0] (US Letter)
|
37
37
|
def initialize(mediabox = [0, 0, 612.0, 792.0])
|
38
38
|
# indirect_reference_id, :indirect_generation_number
|
39
|
-
@contents =
|
39
|
+
@contents = String.new
|
40
40
|
@base_font_name = 'Writer' + SecureRandom.hex(7) + 'PDF'
|
41
41
|
self[:Type] = :Page
|
42
42
|
self[:indirect_reference_id] = 0
|
data/lib/combine_pdf/parser.rb
CHANGED
@@ -41,7 +41,7 @@ module CombinePDF
|
|
41
41
|
# string:: the data to be parsed, as a String object.
|
42
42
|
def initialize(string, options = {})
|
43
43
|
raise TypeError, "couldn't parse data, expecting type String" unless string.is_a? String
|
44
|
-
@string_to_parse = string.force_encoding(Encoding::ASCII_8BIT)
|
44
|
+
@string_to_parse = (string.frozen? ? string.dup : string).force_encoding(Encoding::ASCII_8BIT)
|
45
45
|
@literal_strings = [].dup
|
46
46
|
@hex_strings = [].dup
|
47
47
|
@streams = [].dup
|
@@ -358,23 +358,25 @@ module CombinePDF
|
|
358
358
|
##########################################
|
359
359
|
## parse a Stream
|
360
360
|
##########################################
|
361
|
-
elsif @scanner.scan(/stream[ \t]
|
362
|
-
@scanner.pos += 1 if @scanner.peek(1) == "\n".freeze && @scanner.matched[-1] != "\n".freeze
|
361
|
+
elsif @scanner.scan(/stream[ \t]*\r?\n?/)
|
363
362
|
# advance by the publshed stream length (if any)
|
364
363
|
old_pos = @scanner.pos
|
365
|
-
if(out.last.is_a?(Hash) && out.last[:Length].is_a?(Integer) && out.last[:Length]
|
366
|
-
@scanner.pos += out.last[:Length]
|
364
|
+
if(out.last.is_a?(Hash) && out.last[:Length].is_a?(Integer) && out.last[:Length])
|
365
|
+
@scanner.pos += out.last[:Length]
|
366
|
+
unless(@scanner.skip(/\r?\n?endstream/))
|
367
|
+
@scanner.pos = old_pos
|
368
|
+
# raise error if the stream doesn't end.
|
369
|
+
unless @scanner.skip_until(/endstream/)
|
370
|
+
raise ParsingError, "Parsing Error: PDF file error - a stream object wasn't properly closed using 'endstream'!"
|
371
|
+
end
|
372
|
+
end
|
373
|
+
else
|
374
|
+
# raise error if the stream doesn't end.
|
375
|
+
unless @scanner.skip_until(/endstream/)
|
376
|
+
raise ParsingError, "Parsing Error: PDF file error - a stream object wasn't properly closed using 'endstream'!"
|
377
|
+
end
|
367
378
|
end
|
368
379
|
|
369
|
-
# the following was dicarded because some PDF files didn't have an EOL marker as required
|
370
|
-
# str = @scanner.scan_until(/(\r\n|\r|\n)endstream/)
|
371
|
-
# instead, a non-strict RegExp is used:
|
372
|
-
|
373
|
-
|
374
|
-
# raise error if the stream doesn't end.
|
375
|
-
unless @scanner.skip_until(/endstream/)
|
376
|
-
raise ParsingError, "Parsing Error: PDF file error - a stream object wasn't properly closed using 'endstream'!"
|
377
|
-
end
|
378
380
|
length = @scanner.pos - (old_pos + 9)
|
379
381
|
length = 0 if(length < 0)
|
380
382
|
length -= 1 if(@scanner.string[old_pos + length - 1] == "\n")
|
@@ -724,6 +726,7 @@ module CombinePDF
|
|
724
726
|
|
725
727
|
# All Strings are one String
|
726
728
|
def unify_string(str)
|
729
|
+
str = str.dup if(str.frozen?)
|
727
730
|
str.force_encoding(Encoding::ASCII_8BIT)
|
728
731
|
@strings_dictionary[str] ||= str
|
729
732
|
end
|
data/lib/combine_pdf/renderer.rb
CHANGED
@@ -52,7 +52,7 @@ module CombinePDF
|
|
52
52
|
if object.length == 0 || obj_bytes.min <= 31 || obj_bytes.max >= 127 # || (obj_bytes[0] != 68 object.match(/[^D\:\d\+\-Z\']/))
|
53
53
|
# A hexadecimal string shall be written as a sequence of hexadecimal digits (0-9 and either A-F or a-f)
|
54
54
|
# encoded as ASCII characters and enclosed within angle brackets (using LESS-THAN SIGN (3Ch) and GREATER- THAN SIGN (3Eh)).
|
55
|
-
"<#{object.unpack('H*')[0]}>"
|
55
|
+
"<#{object.unpack('H*')[0]}>"
|
56
56
|
else
|
57
57
|
# a good fit for a Literal String or the string is a date (MUST be literal)
|
58
58
|
('(' + ([].tap { |out| obj_bytes.each { |byte| out.concat(STRING_REPLACEMENT_ARRAY[byte]) } } ).pack('C*') + ')').force_encoding(Encoding::ASCII_8BIT)
|
@@ -101,7 +101,7 @@ module CombinePDF
|
|
101
101
|
end
|
102
102
|
object[:indirect_reference_id] ||= 0
|
103
103
|
object[:indirect_generation_number] ||= 0
|
104
|
-
return "#{object[:indirect_reference_id]} #{object[:indirect_generation_number]} R"
|
104
|
+
return "#{object[:indirect_reference_id]} #{object[:indirect_generation_number]} R"
|
105
105
|
end
|
106
106
|
|
107
107
|
# if the object is indirect...
|
@@ -109,7 +109,7 @@ module CombinePDF
|
|
109
109
|
if object[:indirect_reference_id]
|
110
110
|
object[:indirect_reference_id] ||= 0
|
111
111
|
object[:indirect_generation_number] ||= 0
|
112
|
-
out << "#{object[:indirect_reference_id]} #{object[:indirect_generation_number]} obj\n"
|
112
|
+
out << "#{object[:indirect_reference_id]} #{object[:indirect_generation_number]} obj\n"
|
113
113
|
if object[:indirect_without_dictionary]
|
114
114
|
out << object_to_pdf(object[:indirect_without_dictionary])
|
115
115
|
out << "\nendobj\n"
|
@@ -126,11 +126,11 @@ module CombinePDF
|
|
126
126
|
# (using LESS-THAN SIGNs (3Ch) and GREATER-THAN SIGNs (3Eh)).
|
127
127
|
out << "<<\n".b
|
128
128
|
object.each do |key, value|
|
129
|
-
out << "#{object_to_pdf key} #{object_to_pdf value}\n"
|
129
|
+
out << "#{object_to_pdf key} #{object_to_pdf value}\n" unless PDF::PRIVATE_HASH_KEYS.include? key
|
130
130
|
end
|
131
131
|
object.delete :Length
|
132
132
|
out << '>>'.b
|
133
|
-
out << "\nstream\n#{object[:raw_stream_content]}\nendstream"
|
133
|
+
out << "\nstream\n#{object[:raw_stream_content]}\nendstream" if object[:raw_stream_content]
|
134
134
|
out << "\nendobj\n" if object[:indirect_reference_id]
|
135
135
|
out.join.force_encoding(Encoding::ASCII_8BIT)
|
136
136
|
end
|
data/lib/combine_pdf/version.rb
CHANGED
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: 1.0.
|
4
|
+
version: 1.0.30beta
|
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: 2025-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-rc4
|
@@ -137,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
139
|
requirements: []
|
140
|
-
rubygems_version: 3.
|
140
|
+
rubygems_version: 3.5.22
|
141
141
|
signing_key:
|
142
142
|
specification_version: 4
|
143
143
|
summary: Combine, stamp and watermark PDF files in pure Ruby.
|