Sha256: a84aaa36a5bac1f3b4d12011951ba3281ab18a8506baa1777da2845429bbcf95
Contents?: true
Size: 1.47 KB
Versions: 3
Compression:
Stored size: 1.47 KB
Contents
# Prints a list of all of the glyphs that can be rendered by Adobe's built # in fonts, along with their character widths and WinAnsi codes. Be sure # to pass these glyphs as UTF-8, and Prawn will transcode them for you. require_relative '../example_helper' filename = File.basename(__FILE__).gsub('.rb', '.pdf') Prawn::ManualBuilder::Example.generate(filename) do FONT_SIZE = 9.5 x = 0 y = bounds.top fields = [ [20, :right], [8, :left], [12, :center], [30, :right], [8, :left], [0, :left] ] font 'Helvetica', size: FONT_SIZE start_new_page Prawn::Encoding::WinAnsi::CHARACTERS.each_with_index do |name, index| next if name == '.notdef' y -= FONT_SIZE if y < FONT_SIZE y = bounds.top - FONT_SIZE x += 170 end code = format('%d.', index) char = index.chr.force_encoding(::Encoding::Windows_1252) width = 1000 * width_of(char, size: FONT_SIZE) / FONT_SIZE size = format('%d', width) data = [code, nil, char, size, nil, name] dx = x fields.zip(data).each do |(total_width, align), field| if field width = width_of(field, size: FONT_SIZE) case align when :left then offset = 0 when :right then offset = total_width - width when :center then offset = (total_width - width) / 2 end text_box( field.force_encoding('windows-1252').encode('UTF-8'), at: [dx + offset, y] ) end dx += total_width end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
prawn-2.2.2 | manual/text/win_ansi_charset.rb |
prawn-2.2.1 | manual/text/win_ansi_charset.rb |
prawn-2.2.0 | manual/text/win_ansi_charset.rb |