1 2 3 4 5 6 7 8 9 10 11 12 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 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 109 110
|
# coding: utf-8
# typed: strict
# frozen_string_literal: true
module PDF
class Reader
# mixin for common methods in Page and FormXobjects
#
class Resources
#: (PDF::Reader::ObjectHash, Hash[untyped, untyped]) -> void
def initialize(objects, resources)
@objects = objects
@resources = resources
end
# Returns a Hash of color spaces that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def color_spaces
@objects.deref_hash!(@resources[:ColorSpace]) || {}
end
# Returns a Hash of fonts that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def fonts
@objects.deref_hash!(@resources[:Font]) || {}
end
# Returns a Hash of external graphic states that are available to this
# page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def graphic_states
@objects.deref_hash!(@resources[:ExtGState]) || {}
end
# Returns a Hash of patterns that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def patterns
@objects.deref_hash!(@resources[:Pattern]) || {}
end
# Returns an Array of procedure sets that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Array[Symbol]
def procedure_sets
@objects.deref_array!(@resources[:ProcSet]) || []
end
# Returns a Hash of properties sets that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def properties
@objects.deref_hash!(@resources[:Properties]) || {}
end
# Returns a Hash of shadings that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, untyped]
def shadings
@objects.deref_hash!(@resources[:Shading]) || {}
end
# Returns a Hash of XObjects that are available to this page
#
# NOTE: this method de-serialise objects from the underlying PDF
# with no caching. You will want to cache the results instead
# of calling it over and over.
#
#: () -> Hash[Symbol, PDF::Reader::Stream]
def xobjects
dict = @objects.deref_hash!(@resources[:XObject]) || {}
TypeCheck.cast_to_pdf_dict_with_stream_values!(dict)
end
end
end
end
|