Id like to know the width and height in pixels for a string given a
font family, size and style.
How could I do that ?
Thanks,
Stéphane.
require 'tk'
f = TkFont.new('Courier 10')
width = f.measure("Hi There!")
height = f.metrics.assoc('linespace')[1]