vote up 0 vote down star

String.length will only tell me how many characters are in the String. (In fact, before Ruby 1.9, it will only tell me how many bytes, which is even less useful.)

I'd really like to be able to find out how many 'en' wide a String is. For example:

'foo'.width
# => 3

'moo'.width
# => 3.5          # m's, w's, etc. are wide

'foi'.width
# => 2.5          # i's, j's, etc. are narrow

'foo bar'.width
# => 6.25         # spaces are very narrow

Even better would be if I could get the first n en of a String:

'foo'[0, 2.en]
# => "fo"

'filial'[0, 3.en]
# => "fili"

'foo bar baz'[0, 4.5en]
# => "foo b"

And better still would be if I could strategize the whole thing. Some people think a space should be 0.25en, some think it should be 0.33, etc.

flag

61% accept rate
This has to depend heavily on the font used to render the string, no? – JesperE Dec 18 '08 at 19:21
And you want that independantly of the font? I don't think it is possible – Keltia Dec 18 '08 at 19:21
I agree with the other commenters, unless you know the font this is impossible. – The Wicked Flea Dec 18 '08 at 19:32
Option 1 would be to assume that if you were using a fixed-width font then you'd use .legnth instead of .width. Option 2 would be to have a Font object. AFAIK, there's no Font class in Ruby. – James A. Rosen Dec 18 '08 at 20:59

3 Answers

vote up 3 vote down

You should use the RMagick gem to render a "Draw" object using the font you want (you can load .ttf files and such)

The code would look something like this:

   the_text = "TheTextYouWantTheWidthOf"
   label = Draw.new
   label.font = "Vera" #you can also specify a file name... check the rmagick docs to be sure
   label.text_antialias(true)
   label.font_style=Magick::NormalStyle
   label.font_weight=Magick::BoldWeight
   label.gravity=Magick::CenterGravity
   label.text(0,0,the_text)
   metrics = label.get_type_metrics(the_text)
   width = metrics.width
   height = metrics.height

You can see it in action in my button maker here: http://risingcode.com/button/everybodywangchungtonite

link|flag
vote up 1 vote down

You could attempt to create a standarized "width proportion table" to calculate an aproximation, basically you need to store the width of each character and then traverse the string adding up the widths.

I found this table here:

Left, Width, Advance values for ArialBD16 'c' through 'm'
Letter  Left	Width	Advance
c        1	     7	     9
d        1	     8	     10
e        1	     8	     9
f        0	     6	     5
g        0	     9	     10
h        1	     8	     10
i        1	     2	     4
j       -1	     4	     4
k        1	     8	     9
l        1	     2	     4
m        1 	     12	     14

If you want to get serious, I'd start by looking at webkit, gecko, and OO.org, but I guess the algorithms for kerning and size calculation are not trivial.

link|flag
vote up 8 vote down

It depends on the font used. If you use a fixed width font, it'll be equal to length. If you use other fonts, it'll be something else. Any such function would have to depend on the font used for rendering.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.