<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic bin type font usage in GUI Guider</title>
    <link>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1786833#M747</link>
    <description>&lt;P&gt;I use NXP Imx RT1170 series mcu and I want to use font as a bin format. How could that possible ?&lt;/P&gt;&lt;P&gt;I see there is a source file as lv_binfont_loader.c but this file is not in the latest tag, it exists in master branch. Why the tag does not include this file ? Is it still in progress ?&lt;/P&gt;&lt;P&gt;I have downloaded offline lvgl font converter and have got bin font file with script. After that I have written this bin file into flash's spesific address and used below functions but I could not see anything in screen. I am open any advice.&lt;/P&gt;&lt;P&gt;lv_font_t my_font;&lt;BR /&gt;lv_binfont_load(&amp;amp;my_font,"F:/font.bin");&lt;BR /&gt;static lv_style_t font_style;&lt;BR /&gt;lv_style_init(&amp;amp;font_style);&lt;BR /&gt;lv_style_set_text_font(&amp;amp;font_style, &amp;amp;my_font);&lt;/P&gt;&lt;P&gt;lv_obj_t *label_zh = lv_label_create(ui-&amp;gt;screen);&lt;BR /&gt;lv_obj_align(label_zh, LV_ALIGN_BOTTOM_MID, 0, 0);&lt;BR /&gt;lv_obj_add_style(label_zh, &amp;amp;font_style, 0);&lt;BR /&gt;lv_label_set_text(label_zh, "china font");&lt;/P&gt;</description>
    <pubDate>Thu, 11 Jan 2024 05:47:58 GMT</pubDate>
    <dc:creator>frozen</dc:creator>
    <dc:date>2024-01-11T05:47:58Z</dc:date>
    <item>
      <title>bin type font usage</title>
      <link>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1786833#M747</link>
      <description>&lt;P&gt;I use NXP Imx RT1170 series mcu and I want to use font as a bin format. How could that possible ?&lt;/P&gt;&lt;P&gt;I see there is a source file as lv_binfont_loader.c but this file is not in the latest tag, it exists in master branch. Why the tag does not include this file ? Is it still in progress ?&lt;/P&gt;&lt;P&gt;I have downloaded offline lvgl font converter and have got bin font file with script. After that I have written this bin file into flash's spesific address and used below functions but I could not see anything in screen. I am open any advice.&lt;/P&gt;&lt;P&gt;lv_font_t my_font;&lt;BR /&gt;lv_binfont_load(&amp;amp;my_font,"F:/font.bin");&lt;BR /&gt;static lv_style_t font_style;&lt;BR /&gt;lv_style_init(&amp;amp;font_style);&lt;BR /&gt;lv_style_set_text_font(&amp;amp;font_style, &amp;amp;my_font);&lt;/P&gt;&lt;P&gt;lv_obj_t *label_zh = lv_label_create(ui-&amp;gt;screen);&lt;BR /&gt;lv_obj_align(label_zh, LV_ALIGN_BOTTOM_MID, 0, 0);&lt;BR /&gt;lv_obj_add_style(label_zh, &amp;amp;font_style, 0);&lt;BR /&gt;lv_label_set_text(label_zh, "china font");&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 05:47:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1786833#M747</guid>
      <dc:creator>frozen</dc:creator>
      <dc:date>2024-01-11T05:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: bin type font usage</title>
      <link>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1789920#M759</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/220200"&gt;@frozen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;&lt;EM&gt;lv_binfont_loader.c&amp;nbsp;&lt;/EM&gt;exist in LVGL master branch means it's a new feature of V9.0 which is not released, and GUI Guider only support released version of LVGL (V1.6.1 with LVGL V8.3.5).&lt;/P&gt;
&lt;P&gt;And this feature may need other support, check the &lt;A href="https://github.com/lvgl/lvgl/pull/5333" target="_blank" rel="noopener"&gt;PR 5333&lt;/A&gt;&amp;nbsp;to get more details if you want use this feature in V8.3.5.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Wenbin&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 03:38:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1789920#M759</guid>
      <dc:creator>WenbinYuan</dc:creator>
      <dc:date>2024-01-17T03:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: bin type font usage</title>
      <link>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1791147#M766</link>
      <description>&lt;P&gt;thanks &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/205216"&gt;@WenbinYuan&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;I preferred to add the function only to lv_font_loader.c file. Then I could use font from bin file.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 14:13:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/bin-type-font-usage/m-p/1791147#M766</guid>
      <dc:creator>frozen</dc:creator>
      <dc:date>2024-01-18T14:13:04Z</dc:date>
    </item>
  </channel>
</rss>

