Method: PDF::Reader#info

Defined in:
lib/pdf/reader.rb

#infoObject

Return a Hash with some basic information about the PDF file

: () -> Hash[untyped, untyped]?



131
132
133
134
# File 'lib/pdf/reader.rb', line 131

def info
  dict = @objects.deref_hash(@objects.trailer[:Info]) || {}
  doc_strings_to_utf8(dict)
end