pdfrb 0.7.38 → 0.7.39
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/lib/pdfrb/model/type/misc_helpers.rb +14 -0
- data/lib/pdfrb/model/type.rb +1 -0
- data/lib/pdfrb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cfbdc62ced73caae69a35fbeda0696c91e59034d7150061074984aeaf5774fc
|
|
4
|
+
data.tar.gz: a0763ab8ddb7f86bc80f5d42163dbbce0c6de0d0b7bb505bdd9359dbceffa694
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ac73666c5e342b1d71765514b5207adeb1841a4ba72109f3825515d67f0de7a5732ee7b5f234c5d47b7895684268060cf95bd7ecd82d734e57c6a1439ac6d30
|
|
7
|
+
data.tar.gz: fef9bd2763466355adee7b2daf241cd9bf937f177af65f2f8f986a0df7ea10c25468084ef276b4e7843efa1552f146094198518ed74edab4e95d99e7e670d55a
|
|
@@ -46,6 +46,20 @@ module Pdfrb
|
|
|
46
46
|
end
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
+
# Dest output profile dictionary (s7.9.6): the dictionary a
|
|
50
|
+
# DestOutputProfileRef points at. Carries ICC metadata and the
|
|
51
|
+
# colorant table for PDF/X output intent profiles.
|
|
52
|
+
class DestOutputProfile < Pdfrb::Model::Cos::Dictionary
|
|
53
|
+
arlington_object "DestOutputProfileRef"
|
|
54
|
+
|
|
55
|
+
def checksum; self[:CheckSum]; end
|
|
56
|
+
def colorant_table; self[:ColorantTable]; end
|
|
57
|
+
def icc_version; self[:ICCVersion]; end
|
|
58
|
+
def profile_color_space; self[:ProfileCS]; end
|
|
59
|
+
def profile_name; self[:ProfileName]; end
|
|
60
|
+
def urls; self[:URLs]; end
|
|
61
|
+
end
|
|
62
|
+
|
|
49
63
|
# Output Intents array (s14.11.5). Container for the Catalog
|
|
50
64
|
# /OutputIntents array — convenience wrapper that just forwards
|
|
51
65
|
# to the type.
|
data/lib/pdfrb/model/type.rb
CHANGED
|
@@ -357,6 +357,7 @@ module Pdfrb
|
|
|
357
357
|
autoload :BorderArray, "pdfrb/model/type/misc_helpers"
|
|
358
358
|
autoload :LabRangeArray, "pdfrb/model/type/misc_helpers"
|
|
359
359
|
autoload :DestOutputProfileRef, "pdfrb/model/type/misc_helpers"
|
|
360
|
+
autoload :DestOutputProfile, "pdfrb/model/type/misc_helpers"
|
|
360
361
|
autoload :OutputIntentsContainer, "pdfrb/model/type/misc_helpers"
|
|
361
362
|
autoload :CMapStream, "pdfrb/model/type/misc_helpers"
|
|
362
363
|
autoload :GammaArray, "pdfrb/model/type/misc_helpers"
|
data/lib/pdfrb/version.rb
CHANGED