1

我尝试使用此脚本使用某个脚本转换 .PSD。

这是我的代码:

@echo off

set gimp="c:\Program Files\GIMP 2\bin\gimp-console-2.8.exe"

%gimp% -i -b '(flatten-layer-groups 1 test.psd)' -b '(gimp-quit 0)'

但他不工作,出现此错误:

(gimp-console-2.8.exe:1336): LibGimpBase-WARNING **: gimp-console-2.8.exe: gimp_
wire_read(): error
GIMP-╬°шсър: ═хтючьюцэю юЄъЁ√Є№ 'c:\Work\Test\1': No such file or directory

GIMP-╬°шсър: ═хтючьюцэю юЄъЁ√Є№ 'c:\Work\Test\test.psd)'': No such file or direc
tory

GIMP-╬°шсър: ═хтючьюцэю юЄъЁ√Є№ 'c:\Work\Test\0)'': No such file or directory

请帮我!谢谢!

4

2 回答 2

1

我认为您需要使用双引号,例如

%gimp% -i -b "(flatten-layer-groups 1 \"test.psd\")" -b "(gimp-quit 0)"

看到这个链接

于 2013-01-06T19:35:57.473 回答
0

例如,xd 函数打开 c.jpeg,它位于 Windows 10 桌面上的 Gimp 2.10 版

gimp-2.10 -b "(xd \"C:\\Users\\YourUsername\\Desktop\\c.jpeg\")"

于 2020-05-19T13:33:41.293 回答