views:

51

answers:

1

I have an NSString like @"Hello World" and want to convert that into an bitmap with exactly 20 pixels height. The width of the bitmap should match the width of the text.

I know there are some NSString UIKit additions that can draw text, but I don't know how to draw the text with an bounding box of exactly 20 pixels height (text fits perfectly into this height) into an bitmap that has the perfect size to carry the text?

Is there an easy way to do this?

This must also work with Chinese, Japanese, Russian and Arabic style letters. Maybe I could just put the text in a UILabel and then get it's content bitmap somehow. But the content bitmap of the UILabel would be either too short, or too long in width.

Maybe I must first ask the text itself how big it would be at a certain font size (= height?), and then manually create a bitmap with the exact dimensions needed, and draw the text on this bitmap?

+1  A: 

The way I was told to do it for Cocoa at this question works, and despite the premature optimisation part of my brain doing a wobbly it isn't too slow.

Once you've drawn the text to your satisfaction, you can use this method to obtain an image representation of the view.

Graham Lee
Thanks Graham, that looks good. But it doesn't solve the problem of the exact bitmap. If I just draw it in a UIView's drawRect:, I must pre-guess the needed frame and then draw the text exactly in there, where the width doesn't matter. Only the height matters and must be at 20 pixels.
openfrog
@openfrog: updated to include a reference for that part.
Graham Lee
@Graham Lee: That's cool, man! Thanks!
openfrog