This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TM4C1290NCPDT: big font issue

Part Number: TM4C1290NCPDT

I am using 800x480 display 7" I successfully convert font up to 90 sizes but when I m convert 100,98,96 is not properly converted

like convert method (ftrasterize -f font_type-s 100 -w 45 -p 45 -e 58 font_type.otf (example i am attech file orignal))
I am using both files .ttf or .otf but no success.

I am attaching the original font file .otf formate please guide me on how can be without error if possible please convert my file in the size of 94,96,98,100.
 if possible more than 100 pls also that convert.

if any other software to convert more than 90,100 then tell me how can increase font size.

my sintex is :  GrContextFontSet(&sContext,&g_sFontExSf_ui_display_semibold100);
                       GrStringDraw(&sContext, "123456789..", -1, 0,350,0);
output is =  mising 3456789..

SF_UI_Display_Semibold.zip

  • ftrasterize -f font_type-s 100 -w 45 -p 45 -e 58 font_type.otf

    Is it possible that you didn't have a space before the -s flag. You type "font_type-s". Can you try font_type -s?

    If you have the correct command string and only have problem beyond -s 96 then perhaps there may be a problem in either the ftrasterize utility or your input file font_type.otf. Are you sure font_type.otf. can support all the font sizes you want?

    I did some Google search. You can do some searches yourself too. I found this online tool. You can give it a try. https://github.com/lvgl/lv_utils

    The ftrasterize source code is in C:\ti\TivaWare_C_Series-2.2.0.295\tools\ftrasterize directory. You can review/update and rebuild it too.