使用 Python 打印硬拷贝图像

发布于 2025-01-10 07:16:29 字数 301 浏览 0 评论 0原文

我已经看到了一些与此相关的主题,但没有找到我想要的直接答案。我下面有这个脚本,但它打印出文本而不是图像。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文