美好的一天。
在我的工作中,我有时必须使用脚本从数字或ID中获取一些信息。像下面的例子一样:
我使用的脚本:
$sh script.sh 9999999999999 abc
屏幕上显示的信息:
number: 9999999999999
SQL*Plus: Release 1.2.3.4 Production on Wed Jan 10 12:35:22 2017
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database Enterprise Edition Release 1.2.3.4 - 32bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
NUMBER||','||SERVICE||','||CONTRACT_DATE||','||COMFIRMATION
--------------------------------------------------------------------------------
9999999999999,SERVICE_NAME_1,01-OCT-13 10.44.30 AM,Y
9999999999999,SERVICE_NAME_2,08-DEZ-14 09.52.57 AM,N
9999999999999,SERVICE_NAME_3,26-FEB-16 11.42.30 AM,Y
Disconnected from Oracle Database Enterprise Edition Release 1.2.3.4 - 32bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
我想知道如何将脚本返回给我的任何内容转换成图像,就像拍摄终端的屏幕截图一样。
答案 0 :(得分:5)
这是转向Python Package Index PyPI的好时机。它提供了许多功能的模块,包括从Python获取屏幕截图。
考虑,例如pyscreenshot
使用pip
或您当地的平台特定安装程序安装,然后:
import pyscreenshot
im = pyscreenshot.grab()
im.save('ss.png')
im
是PIL / Pillow兼容的图像,可以轻松操作或保存到文件中。