Jump to content

[issue] autoit high dpi blurriness, fuzziness in gui


Go to solution Solved by simplercoder000,

Recommended Posts

Hi there,

I'm facing this issue where my GUI app gets blurriness/fuzziness controls.

My screen size are big so I'm enforced to up-scale my display text to 150% so I can view things normally.

 

The same issue has been reported as bug here: https://www.autoitscript.com/trac/autoit/ticket/3238

But this issue seems like still unsolved until today.

 

I have been searching in the forum for a while, and I have found this:

 

I have tried this script, but I'm still facing the same issue.

I have even tried adding the High DPI feature into my script but that's also didn't work

#AutoIt3Wrapper_Res_HiDpi

 

Example GUI:

Quote

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 220, 172, 195, 124)
$Button1 = GUICtrlCreateButton("Button1", 32, 112, 75, 33)
$Button2 = GUICtrlCreateButton("Button2", 114, 112, 75, 33)
$Input1 = GUICtrlCreateInput("Input1", 48, 72, 121, 21)
$Label1 = GUICtrlCreateLabel("Autoit are awesome !", 64, 24, 103, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

    EndSwitch
WEnd

I'm running on Windows 7 x64

autoit_gui_blurriness_fuzziness.png

autoit_gui_blurriness_fuzziness_2.png

Link to comment
Share on other sites

1 hour ago, argumentum said:

I don't know how did I miss this thread, maybe I haven't search well, thank you!

 

The High DPI issue must be treated as serious problem since not all users have the same screen sizes.

I say this because I even notice that some internal AutoIt tools like Koda (Form Designer) or AutoIt3Wrapper GUI has the HiDPI issues.

Link to comment
Share on other sites

for example, this is the way it looks in each of my 2 monitors:

image.png.aef4060d459d9176207d599fb0339027.png

placed one on top of the other. 100% and 225%. Even if you have one in Win7.

And, sorry, I meant the one here at this post ( https://www.autoitscript.com/forum/topic/210604-tester-needed/#comment-1522028 ) not the first one. My bad.

 

Edited by argumentum
better pic

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...