Make Tkinter Window Look Less Blury

[Solved] Make Tkinter Window Look Less Blury | Php - Code Explorer | yomemimo.com
Question : Make tkinter window look less blury

Answered by : busy-buzzard-ex49p227f3bl

'''
On some windows displays, tkinter windows will look blurried.
Add the folloing code at the start of your code to fix it
'''
from ctypes import windll #You may want to read up the docs
windll.shcore.SetProcessDpiAwareness(True) #Set high dpi to True

Source : https://stackoverflow.com/questions/41315873/attempting-to-resolve-blurred-tkinter-text-scaling-on-windows-10-high-dpi-disp | Last Update : Thu, 16 Dec 21

Answers related to make tkinter window look less blury

Code Explorer Popular Question For Php