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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d888d4df1823cbdabbf317c13c30f8e71554bb5d1dd85eb8ba278f0efdc1888
4
- data.tar.gz: 28eda9f9bece4d3f55ddd02d4add9767fe0ba9cc3cf05a67cf2eb2a8a5e71178
3
+ metadata.gz: 6cfbdc62ced73caae69a35fbeda0696c91e59034d7150061074984aeaf5774fc
4
+ data.tar.gz: a0763ab8ddb7f86bc80f5d42163dbbce0c6de0d0b7bb505bdd9359dbceffa694
5
5
  SHA512:
6
- metadata.gz: 1d6be10c471f16657d0c56595aedae5f2620710ad6eeaca7decd193a8b46a82b63a3c03dfce0505bddcfe3ea3b00fb508392a1746bd9764616bee4c7a1bd2173
7
- data.tar.gz: 286ea4a19b8da5a588ba437e6f74dbba6c19b036cb4349e6bd65c9828836e9b517c1be670c8d7ce0e4f947c268e32420f1d18fabc02c29ce66c3d566d95a633f
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.
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pdfrb
4
- VERSION = "0.7.38"
4
+ VERSION = "0.7.39"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdfrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.38
4
+ version: 0.7.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.