This page was last modified 22:43, 13 September 2007.
Talk:Custom font
From Forum Nokia Wiki
CGraphicsDevice* iDevice = iCoeEnv->ScreenDevice();
TFileName iFileName; iFileName.Copy(_L("e:\\others\\vusilli.gdr"));
CFbsTypefaceStore* iFontStore = CFbsTypefaceStore::NewL(iDevice); CWsScreenDevice* iScrDevice =iCoeEnv->ScreenDevice();
TInt aid =10001;//use any value iScrDevice->AddFile(iFileName,aid);
TFontSpec myFontSpec; iDevice->GetNearestFontInTwips(myFont,myFontSpec);
gc.UseFont(myFont); gc.SetPenColor(KRgbBlack); gc.DrawText(_L("hello"),TPoint(5,20));
