Skip to main content

颜色数量

from ascript.ios.screen import CountingColor

从屏幕中找到指定颜色的数量

  • 方法
CountingColor(self,  colors: str, rect: tuple = None, diff: tuple = (5, 5, 5), image: Image.Image = None,
image_file=None)
  • 参数
参数类型是否必填说明
colorsstr颜色参数,用图色工具生成
rectlist圈定屏幕范围
diffint偏色,默认(5,5,5) 分别代表RGB 三个通道的色差,每个值在0-255之间
rgblistrgb找色
imageImage.Image要识别的图片,默认全屏幕截图
image_filefile要识别的图片文件地址,和image图片只能生效一个
  • 示例
from ascript.ios.screen import CountingColor
res = CountingColor("#EEF0B9|#FFFFFF|#46332D|#A0847B").find()
print(res)