# File lib/png/font.rb, line 20
  def initialize(png_file)
    @canvas = PNG.load_file png_file
    @height, @width = canvas.height / 4, canvas.width / 26
    @cache = {}
  end