Python 和 Gimp:如何正确终止 gimp 进程?

Python and Gimp: How to properly kill the gimp process?

我正在使用 python 脚本,照片软件 gimp 调用该脚本将 pdf 转换为 jpg。到目前为止,该脚本运行良好,但是当它完成时,gimp 将 cmd window 打开并显示 "press any key to exit"。这个 cmd window 是 gimp.exe 进程,我无法用我的脚本杀死它(我不想每次我 运行 我的脚本时都输入用户输入)。

我尝试了 python 命令,例如 os.system("taskkill /im gimp-2.8.exe")sys.exit(0),但其中 none 有效。

这是我的 python 脚本:

import os,time,sys,glob,re
from gimpfu import *

rxcountpages = re.compile(r"/Type\s*/Page([^s]|$)", re.MULTILINE|re.DOTALL)

#Convert a single pdf file
def process(infile, outfile):
    print "Processing file %s " % infile

    for x in range(1,countPages(infile) + 1):
        print "Test"
        countStr = str(x)
        pdb.file_ps_load_setargs(100, 0, 0, 0, countStr, 6, 2, 2)
        image = pdb.file_ps_load(infile,infile)
        drawable = pdb.gimp_image_get_active_layer(image)
        print "File %s loaded OK" % infile
        #outfile=os.path.join('processed',os.path.basename(infile))
        #outfile=os.path.join(os.path.dirname(infile),outfile)
        print outfile
        filename, file_extension = os.path.splitext(outfile)
        output = filename + "_" + countStr + ".jpg"
        print "Saving to %s" % outfile
        pdb.file_jpeg_save(image, drawable, output, output, 0.9,0,1,0,"",0,1,0,0)
        print "Saved to %s" % outfile
        pdb.gimp_image_delete(image)
        print "---------"

def countPages(filename):  
    data = file(filename,"rb").read()  
    return len(rxcountpages.findall(data))

if __name__ == "__main__":
    print "Running as __main__ with args: %s" % sys.argv

这就是我从 windows 命令行调用 gimp 脚本的方式:

"C:\Program Files\GIMP 2\bin\gimp-2.8.exe" -idf --batch-interpreter python-fu-eval -b "import sys;sys.path=['.']+sys.path;import PDF;PDF.process('%1','%2');PDF.exit()" -b "pdb.gimp_quit(1)"

我原以为 gimp 命令 gimp_quit(1) 会关闭 windows 但它不会。

这似乎是一个如此简单的问题,但我已经在这上面花费了数小时,因此非常感谢您的帮助。谢谢。

好的,我通过在 gimp 特定论坛中询问得到了解决方案:

额外的控制台 window 已打开,因为我没有指定 gimp 是否应该记录它的消息。这就是为什么它打开了一个额外的控制台 window.

所以请求现在看起来像这样:

"C:\Program Files\GIMP 2\bin\gimp-console-2.8.exe" -idf --batch-interpreter python-fu-eval -b "import sys;sys.path=['.']+sys.path;import PDF;PDF.process('%1','%2');" -b "pdb.gimp_quit(1)" 1>c:\temp\gimp_startup.txt 2>&1