Here is a patch that includes font collection, font style and family name.
How to use :
uses EasyLazFreeType, IntfGraphics, LazFreeTypeIntfDrawer, LazFreeTypeFontCollection;
var
lazimg: TLazIntfImage;
drawer: TIntfFreeTypeDrawer;
begin
FontCollection.AddFolder('c:\windows\fonts'); //for example
lazimg := TLazIntfImage.Create(...);
drawer := TIntfFreeTypeDrawer.Create(lazimg);
ft := TFreeTypeFont.Create;
ft.Name := 'Arial';
ft.Style := [ftsBold];
ft.LineFullHeight := 50; // height in pixels
drawer.DrawText('The quick brown fox jumps over the lazy dog.',ft,0,0,colBlack,[ftaLeft,ftaTop]);
ft.Free;
lazimg.free;
drawer.free;
end;