Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道是否可以使用powershell进行图像打印?(即打印文件,例如 png 或 jpg 文件)
Out-printer 似乎对文本有好处,但除此之外没什么
谢谢
这将从您将脚本放入的任何给定目录中打印 jpgs
Get-ChildItem -Recurse | ForEach-Object { if ($_.Extension -eq ".jpg") { Start-Process -FilePath $_.FullName -Verb Print }
您需要使用 System.Drawing 等 .NET 类来执行此操作。检查以下链接以获取有关此的快速示例。
http://monadblog.blogspot.in/2006/02/msh-print-image.html