我是 Windows 用户,想从控制台运行 gimp,如 HERE 所示。在 Windows 上,这意味着将程序放在您的路径上。我用了:

C:\Program Files\GIMP 2\bin

和....
C:\Program Files\GIMP 2\bin\gimp-2.8.exe
C:\Program Files\GIMP 2\bin\gimp-2.8.exe

但是当我输入:
gimp --version

我收到以下错误:
C:\Users\trinker>gimp --version
'gimp' is not recognized as an internal or external command,
operable program or batch file.

如何让 Windows 从命令行检测 gimp 以便我可以运行批处理?不幸的是,输入 gimp + path 会导致与 gimp 中创建的路径相关的搜索。

我可以很好地运行 gimp 的 gui。

最佳答案

在控制台中,键入:

PATH=%PATH%;"C:\Program Files\GIMP 2\bin"

然后打
gimp-2.8 --version

关于windows - 从控制台运行 gimp,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25819054/

10-12 20:11