FontViewer
27 Sep 2004 - 21:37

FontViewer is a freeware tool that displays all fonts available on a Symbian powered phone.

This is quite useful when developping new fonts and checking that they are correctly loaded by the font and bitmap server or just to check which fonts are available on which device.

fv.png

Nokia Series 60 Nokia Series 80 Nokia Series 90 UIQ
FontViewer-S60.sis
FontViewer-S60.sis
FontViewer-S80.sis
FontViewer-S80.sis
Not yet available FontViewer-UIQ.sis
FontViewer-UIQ.sis

Fontviewer has been written by NewLC. Please do not redistribute this software without linking back to this page.

This application is for S60 2nd Edition only. If you are using a S60 3rd Edition phone, you should use PhoneInfo instead.

Note: The Install Font function of the option menu does currently nothing. The small popup that comes to confirm the installation of a new font is just a fake message.
AttachmentSize
FontViewer.png5.25 KB
fvS60-2.png6.04 KB
fvUIQ-2.png7.11 KB
Download posted September 27th, 2004 by eric

Submitted by Tomasz (not verified) on Tue, 2006-01-03 12:34.

Hi Eric,

Would you explain how do you enumerate fonts available in the system? What system API do you use for that?

regards Tomasz Kilarski


Submitted by eric on Tue, 2006-01-03 14:23.

No problem, here is the function that retrieves the font list (taken from the fontviewer code):

/**
* Second phase constructor. Initialise the font list.
*/
void CFvModel::ConstructL()
{
 TTypefaceSupport *typeface;
 iFontCount = iCoeEnv->ScreenDevice()->NumTypefaces();
 for( TInt i=0;i<iFontCount;i++)
 {
           typeface = new TTypefaceSupport;
       User::LeaveIfNull(typeface);
           iCoeEnv->ScreenDevice()->TypefaceSupport(*typeface,i);
           User::LeaveIfError(iFont.Append(typeface));
 }


Submitted by Anonymous on Wed, 2007-02-21 08:12.

hello. I'm trying to use the code above. I would like to know what is "iFont", is it CFont or array of CFont object?

Thanks!


Submitted by eric on Wed, 2007-02-21 09:57.

It is an array

Submitted by Anonymous on Mon, 2006-04-17 09:08.

i do not have any mobile phone. how can i use .sis files in the emulator? is it possible?

Submitted by Anonymous on Mon, 2006-04-17 09:14.

Dear Eric,

I want to use Arabic fonts in my hello world application. How can I do that? How can I use Arabic fonts in my application? Please guide me. Do you know any appropriate example or reference?

Regards,


Submitted by Anonymous on Sun, 2006-05-14 10:16.

Hi, I am a new programmer, so be patient... Got a new Nokia N80 apparently with symbian 60 3rd edition. I am not able to install the fontviewer software. What is worng?

_TSL


Submitted by eric on Mon, 2006-05-15 09:11.

It is not (yet) available for this platform!

Submitted by Anonymous on Thu, 2006-06-29 12:25.

Hi Eric,

I've created my own font gdr file. If i copied to \system\fonts whole emulator font is affecting. How to change it as affecting to my application only.

regards, eswar



copyright 2003-2009 NewLC SARL