Sha256: c6ba56a4394b62a29b4c2c869f7711dccc95ff7c7335971bd215cc4e35f93d4b

Contents?: true

Size: 1.13 KB

Versions: 17

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8
#
# font.rb : The Prawn font class
#
# Copyright November 2008, Jamis Buck. All Rights Reserved.
#
# This is free software. Please see the LICENSE and COPYING files for details.
#
require 'prawn/font/ttf'

module Prawn
  class Font
    class DFont < TTF
      
      # Returns a list of the names of all named fonts in the given dfont file.
      # Note that fonts are not required to be named in a dfont file, so the
      # list may be empty even if the file does contain fonts. Also, note that
      # the list is returned in no particular order, so the first font in the
      # list is not necessarily the font at index 0 in the file.
      #
      def self.named_fonts(file)
        TTFunk::ResourceFile.open(file) do |f|
          return f.resources_for("sfnt")
        end
      end

      # Returns the number of fonts contained in the dfont file.
      #
      def self.font_count(file)
        TTFunk::ResourceFile.open(file) do |f|
          return f.map["sfnt"][:list].length
        end
      end

      private 

      def read_ttf_file
        TTFunk::File.from_dfont(@name, @options[:font] || 0)
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 7 rubygems

Version Path
prawn-1.0.0.rc2 lib/prawn/font/dfont.rb
nurettin-prawn-1.0.0.rc1 lib/prawn/font/dfont.rb
prawn-1.0.0.rc1 lib/prawn/font/dfont.rb
prawn-0.12.0 lib/prawn/font/dfont.rb
prawn-0.11.1 lib/prawn/font/dfont.rb
davebenvenuti-prawn-0.11.1.pre lib/prawn/font/dfont.rb
piglop-prawn-0.10.2.3 lib/prawn/font/dfont.rb
piglop-prawn-0.10.2.2 lib/prawn/font/dfont.rb
piglop-prawn-0.10.2.1 lib/prawn/font/dfont.rb
prawn-0.11.1.pre lib/prawn/font/dfont.rb
goodwill-prawn-edge-0.10.0 lib/prawn/font/dfont.rb
alphasights-prawn-0.10.4 lib/prawn/font/dfont.rb
alphasights-prawn-0.10.3 lib/prawn/font/dfont.rb
alphasights-prawn-0.10.2 lib/prawn/font/dfont.rb
alphasights-prawn-0.10.1 lib/prawn/font/dfont.rb
alphasights-prawn-0.10.0 lib/prawn/font/dfont.rb
prawn-core-0.8.4 lib/prawn/font/dfont.rb