I need to change my text render in kivy python from sdl2 to pango text render or text provider how can i make it ?
Asked
Active
Viewed 142 times
0
-
Have a look at [environment variables](https://kivy.org/doc/stable/guide/environment.html#restrict-core-to-specific-implementation) – John Anderson Jul 21 '22 at 01:35
1 Answers
1
After insatlling pango, use this at the top of your file.
import os
os.environ['KIVY_TEXT'] = 'pango'

Amin Etesamian
- 3,363
- 5
- 27
- 50
-
-
-
-
https://stackoverflow.com/questions/63646050/kivy-isnt-showing-bengali-joining-character-properly – Amin Etesamian Jul 21 '22 at 16:44
-
-
i made every thing in the above documentation but still not working – ahmed omran Jul 21 '22 at 23:12
-
the correct thing that the problem is in install pango but i can't find any resources explain how to setup this can you help me with this ? – ahmed omran Jul 21 '22 at 23:12
-
-
i know i did every thing which is written in the link but not working yet and this causing a big problem for me – ahmed omran Jul 22 '22 at 10:23