class HexaPDF::Type::FontType1

def symbolic?

not known.
Returns +true+ if the font is a symbolic font, +false+ if it is not, and +nil+ if it is
def symbolic?
  symbolic = super
  if !symbolic.nil?
    symbolic
  elsif StandardFonts.standard_font?(self[:BaseFont])
    name = StandardFonts.standard_name(self[:BaseFont])
    name == :ZapfDingbats || name == :Symbol
  else
    nil
  end
end