如何在 macOS 上使用 python 将图片发送到打印机

问题描述 投票:0回答:1

我正在做一个python程序(使用python3.6),它动态生成一个.jpg图片作为输出(我使用Pillow模块)。如何在生成图片后立即自动将其直接发送到打印机? 我试图研究

os
模块,但我不知道该怎么做。

python python-3.x macos python-imaging-library
1个回答
3
投票

os
模块应该能够在MacOS上使用

os.system("lpr -P YOUR_PRINTER file_name.jpg")
© www.soinside.com 2019 - 2024. All rights reserved.