Python 实现Mac 屏幕截图详解

编辑: admin 分类: python 发布时间: 2021-12-03 来源:互联网
目录
  • 前言
    • pyscreenshot
      • github地址
      • Python 安装
      • 用例代码
      • 截图效果
  • 总结

    前言

    最近想做个小玩意,需要在mac端实现屏幕截图,搜了下网上中文资源都比较老旧,于是查了下,发现有些好用的Python库已经支持Mac 以及 Linux 了,特此记录

    pyscreenshot

    github地址

    github地址https://github.com/Zjvngvn/pyscreenshot里面有安装和用例说明

    Python 安装

    pip install pyscreenshot
    

    用例代码

    屏幕部分区域截图(x1,y1)左上点、(x2,y2)右下点截图:

    import pyscreenshot as ImageGrab
    # part of the screen
    im = ImageGrab.grab(bbox=(0, 90, 2048, 1230))  # X1,Y1,X2,Y2
    # save image file
    im.save("box.png")
    

    截图效果

    在电脑端截图游戏画面:

    在这里插入图片描述

    总结

    本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注hwidc的更多内容!

    【来源:自由互联:http://www.1234xp.com/meiguo.html