使用 Python 打印硬拷贝图像
我已经看到了一些与此相关的主题,但没有找到我想要的直接答案。我下面有这个脚本,但它打印出文本而不是图像。
import os
import tempfile
filename = tempfile.mktemp(".txt")
open (filename , "w").write ("dellow")
os.startfile(filename, "print")
是否有办法修改此代码以打印图像而不是文本?或者甚至创建一个全新的脚本。任何有效的东西都可以。
(该图片是我的个人资料图片的简单PNG)
I have seen some topics about this but nothing with a direct answer that I want. I have this script below but it prints out text not images.
import os
import tempfile
filename = tempfile.mktemp(".txt")
open (filename , "w").write ("dellow")
os.startfile(filename, "print")
Is there anyway to modify this code to print out an image instead of text? Or even create an entirely new script. Just anything that works is fine.
(The image is a simple PNG of my profile picture)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论