Sha256: e96a9618169595cb6c15bcbd8763f252b61b243eceb6ef3e2bb02e2e1114ba05

Contents?: true

Size: 1.29 KB

Versions: 18

Compression:

Stored size: 1.29 KB

Contents

# ## TrueType Fonts
#
# This example displays all glyphs of a TrueType font and shows that using a
# TrueType font with HexaPDF is very similar to using one of the standard PDF
# fonts.
#
# Before a TrueType font can be used, HexaPDF needs to be made aware of it. This
# is done by setting the configuration option 'font.map'. For one-off usage of a
# font file, the file name itself can also be used.
#
# Once that is done the [HexaPDF::Content::Canvas#font] method can be used as
# usual.
#
# Usage:
# : `ruby truetype.rb [FONT_FILE]`
#

require 'hexapdf'

doc = HexaPDF::Document.new
font_file = ARGV.shift || File.join(__dir__, '../test/data/fonts/Ubuntu-Title.ttf')
wrapper = doc.fonts.add(font_file)
max_gid = wrapper.wrapped_font[:maxp].num_glyphs

255.times do |page|
  break unless page * 256 < max_gid
  canvas = doc.pages.add.canvas
  canvas.font("Helvetica", size: 10)
  canvas.text("Font: #{wrapper.wrapped_font.full_name}", at: [50, 825])

  canvas.font(font_file, size: 15)
  16.times do |y|
    canvas.move_text_cursor(offset: [50, 800 - y * 50], absolute: true)
    canvas.show_glyphs((0..15).map do |i|
      gid = page * 256 + y * 16 + i
      glyph = wrapper.glyph(gid)
      gid >= max_gid ? [] : [glyph, -(2000 - glyph.width)]
    end.flatten!)
  end
end

doc.write("truetype.pdf", optimize: true)

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
hexapdf-0.11.9 examples/007-truetype.rb
hexapdf-0.11.8 examples/007-truetype.rb
hexapdf-0.11.7 examples/007-truetype.rb
hexapdf-0.11.6 examples/007-truetype.rb
hexapdf-0.11.5 examples/007-truetype.rb
hexapdf-0.11.4 examples/007-truetype.rb
hexapdf-0.11.3 examples/007-truetype.rb
hexapdf-0.11.2 examples/007-truetype.rb
hexapdf-0.11.1 examples/007-truetype.rb
hexapdf-0.11.0 examples/007-truetype.rb
hexapdf-0.10.0 examples/007-truetype.rb
hexapdf-0.9.3 examples/007-truetype.rb
hexapdf-0.9.2 examples/007-truetype.rb
hexapdf-0.9.1 examples/007-truetype.rb
hexapdf-0.9.0 examples/007-truetype.rb
hexapdf-0.8.0 examples/007-truetype.rb
hexapdf-0.7.0 examples/truetype.rb
hexapdf-0.6.0 examples/truetype.rb