There is an article called Low-level text rendering by Ohmu that covers this pretty extensively. I have tried this code and can confirm that it works.
It does use Core Text, though, so the rendering is probably not exactly like that of a UILabel. Also, the sample article only deals with a single line. To extend it to multiple lines, you have to setup the complete Core Text system. Instead of:
CTLineRef line = CTLineCreateWithAttributedString( attStr ) ;
you need to set up a CTFramesetterRef (CTFramesetterCreateWithAttributedString) and CTFrameRef (CTFramesetterCreateFrame) as described in the Core Text Programming Guide. You can then get all lines in the frame with CTFrameGetLines().
You would then wrap the for loop in the sample article:
CFArrayRef runArray = CTLineGetGlyphRuns(line);
// for each RUN
for (CFIndex runIndex = 0; runIndex < CFArrayGetCount(runArray); runIndex++)
with another loop that iterates over all lines. The inner core of the loop should be identical.
The sample article creates a graphics context and adds the paths for the single glyphs to this context's path, but you can just as easily create a CGMutablePathRef or UIBezierPath and add the single glyph's paths to that object.
One thing that is not 100% clear to me without testing this is how to adjust the vertical position of the glyphs in the final path. You probably have to call CTFrameGetLineOrigins() to get the position of each line and add this position to each rendered glyph (possibly after transforming it with the text matrix).