Can you determine the quality of the picture "$hHBmp" in this example
; thank to uez
#include <GDIplus.au3>
#include <ScreenCapture.au3>
Global $STM_SETIMAGE = 0x0172
Global $ghGDIPDll
$hGUI = GUICreate("Displays an image from Hb in button control", 900, 555)
$idButton = GUICtrlCreatePic("", 0, 0, 900, 555, 0xE)
GUISetState()
_GDIPlus_Startup()
Load_BMP_From_Hb(GUICtrlGetHandle($idButton))
_GDIPlus_Shutdown()
While 1
Sleep(10)
$msg = GUIGetMsg()
If $msg = -3 Or $msg = $idBu