zoukankan      html  css  js  c++  java
  • Python中的截屏模块 pyscreenshot

    前言

    pyscreenshot 是一个 Python 的模块,用来对屏幕进行截屏并拷贝到 PIL or Pillow 图像对象中。这是一个纯 Python 库,支持跨平台。

    示例代码:

    import pyscreenshot as ImageGrab

    fullscreen

    im=ImageGrab.grab()
    im.show()

    part of the screen

    im=ImageGrab.grab(bbox=(10,10,510,510)) # X1,Y1,X2,Y2
    im.show()

    1
    2
    3
    4
    5
    6
    7
    8
    9
    

    Ubuntu 下安装:

    sudo apt-get install python-pip
    sudo pip install pyscreenshot
    sudo apt-get install python-imaging

    optional back-ends

    sudo apt-get install scrot
    sudo apt-get install imagemagick
    sudo apt-get install python-gtk2
    sudo apt-get install python-qt4

    optional for examples

    sudo pip install entrypoint2
    卸载:

    as root

    pip uninstall pyscreenshot
    类似的项目还有:

    gtkShots

    autopy

  • 相关阅读:
    oracle,mysql对敏感,关键字等处理
    eclipse内置tomcat启动方法
    plsql登录弹白框
    date
    linux乱码
    环境变量
    终端类型
    netstat -aon|findstr 8888 终止进程
    export
    bash环境变量读取顺序
  • 原文地址:https://www.cnblogs.com/enumx/p/12334200.html
Copyright © 2011-2022 走看看