Python中的截屏模块 pyscreenshot

Posted enumx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

以上是关于Python中的截屏模块 pyscreenshot的主要内容,如果未能解决你的问题,请参考以下文章

按需截屏全python使用tkinter实现透明窗体实现实用的截屏功能(第五篇)

python 一个半生不熟的想法,可以更容易地进行可重复的截屏过程

使用java awt最简单的截屏程序

Rails系统测试终端中的截屏垃圾邮件

使用 Socket.IO 和 Node.JS 的截屏网站

iOS中控件的截屏