2009-09-27から1日間の記事一覧

prawn:Prawn::Font#height_at

#!/usr/bin/env ruby require "prawn" pdf = Prawn::Document.new f = Prawn::Font.load(pdf, "Times-Roman") p f p f.height_at(12) p f.height_at(24) pdf.font_size(24) p f.height_at(12) p f.height_at(24) で、 Prawn::Font::AFM< Times-Roman: 12 > 1…