class HexaPDF::Type::FontType3

Represents a Type 3 font.

See: PDF1.7 s9.6.5

Private Instance Methods

perform_validation() { |"Required field Encoding is not set", false| ... } click to toggle source
# File lib/hexapdf/type/font_type3.rb, line 55
def perform_validation
  super
  yield("Required field Encoding is not set", false) if self[:Encoding].nil?
end