prawnpdf/prawn

View on GitHub
lib/prawn/fonts/otf.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative 'ttf'

module Prawn
  module Fonts
    # OpenType font. This class is used mostly to distinguish OTF from TTF.
    # All functionality is in the {Fonts::TTF} class.
    #
    # @note You shouldn't use this class directly.
    class OTF < TTF
    end
  end
end