# File lib/prawn/font/ttf.rb, line 111
      def cap_height
        @cap_height ||= begin
          height = @ttf.os2.exists? && @ttf.os2.cap_height || 0
          height == 0 ? ascender : height
        end
      end