python 实现区域截图
时间: 2023-11-24 17:07:36 浏览: 116
可以使用Python模块pyautogui来实现区域截图。以下是一段简单的示例代码:
```python
import pyautogui
# 获取屏幕的尺寸信息
screen_size = pyautogui.size()
# 设定截图区域的位置和尺寸
left, top, width, height = 100, 100, 300, 200
# 截图并保存
screenshot = pyautogui.screenshot(region=(left, top, width, height))
screenshot.save('screenshot.png')
```
这段代码中,我们首先获取了屏幕的尺寸信息,然后指定了截图区域的位置和尺寸。最后使用`pyautogui.screenshot`函数进行截图,并将结果保存到文件中。
阅读全文