More efficent to load font or display image with text on it?

Would it be more efficient to load an image or load a font and draw a string with this font? I am referring to android efficiency on this, but regular java efficiency too.

A raster image will be must faster to load and render than vector data (which needs to be parsed and triangulated).

i never thought about it that way. thanks!