Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Make tkinter window look less blury

'''
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 by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Make #tkinter #window #blury
ADD COMMENT
Topic
Name
1+9 =