带有 Image Magick Montage 的 Powershell 从文本文件中读取

Powershell with Image Magick Montage reading from text file

我正在使用 Image Magick 的蒙太奇功能编写 PowerShell 脚本。我的脚本一直有效,直到源文件 (.jpgs) 的数量增加到不明确的文件数量。一旦有 'too many' 个文件,脚本就会因 'Program 'montage.exe' failed to run: The filename or extension is too long' 而失败。在 Image Magick 论坛 (link @bottom) 上有人建议让 PowerShell 从文本文档中读取,而不是使用“@”运算符来减少长度。

代码现在看起来像:

montage -verbose -label %t -pointsize 25 -background '#FFFFFF' -tile 24x5 -fill 'black' -define jpeg:size=600x780 -geometry 600x780+40+150 -quality 90 -auto-orient @E:\Output\contactSheetImages.txt E:\Contact_Sheet.jpg

我收到以下错误:

montage : montage.exe: unable to open image '@E:ÿþE': No such file or directory @ error/blob.c/OpenBlob/2695.

montage.exe: no decode delegate for this image format `' @ error/constitute.c/ReadImage/508.

montage.exe:  `E:\Contact_Sheet.jpg' @ error/montage.c/MontageImageCommand/1774.

我相当确定使用“@”运算符可能会混淆脚本,但我对在 PowerShell 中使用“@”了解不多,不知道为什么。

任何了解 ImageMagick 或更了解 PowerShell 的人都可以解释为什么这可能会破坏脚本吗?

我试过:

Image Magick 论坛: https://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=34596

感谢大家的想法和帮助。虽然我无法使用所提供的任何想法,但它让我想出了一个简单的解决方案。

我只是通过直接定位文件来消除读取文本文件的需要:

montage -verbose -label %t -pointsize 25 -background '#FFFFFF' -tile 24x5 -fill 'black' -define jpeg:size=600x780 -geometry 600x780+40+150 -quality 90 -auto-orient E:\Output\*.jpg E:\Contact_Sheet.jpg

虽然我更想解决问题而不是开发变通方法,但我的脚本现在可以运行了。