识别缩略图加载
Posted zhangdingqu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了识别缩略图加载相关的知识,希望对你有一定的参考价值。
# -*- coding: cp936 -*- from ctypes import * import win32con import win32api import time while True: #引入winapi gdi32 = windll.gdi32 user32 = windll.user32 #获取句柄 hdc = user32.GetDC(None) #获取指定像素的颜色 c = gdi32.GetPixel(hdc,2501,1347) #打印十进制转化为十六进制的颜色 rgb=(hex(c)) # print(rgb) if rgb!=‘0xd77800‘: win32api.keybd_event(34, 0, 0, 0) time.sleep(0.5)
更多按键代号参考此链接
以上是关于识别缩略图加载的主要内容,如果未能解决你的问题,请参考以下文章