LoginSignup
5
16

More than 3 years have passed since last update.

Kivy 日本語表示の設定

Last updated at Posted at 2018-08-26

Kivy はデフォルト設定だと日本語が正常に表示されません。

■ 設定方法

main.py
from kivy.core.text import LabelBase, DEFAULT_FONT
from kivy.resources import resource_add_path

resource_add_path("ダウンロードパス/IPAexfont00301")
LabelBase.register(DEFAULT_FONT, "ipaexg.ttf")
5
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
16