如何用python gimp替换新创建的图像上的一个图像?

时间:2017-08-11 18:56:45

标签: python scripting gimp

我正在尝试用gimp

中的文件系统中的图像替换新创建的图像
from gimpfu import *
import os
cwd = os.getcwd()

graphic = pdb.gimp_file_load(cwd + '/original.psd', cwd + '/original.psd')

# image where i'm going to replace the graphic
image = gimp.Image()

pdb.gimp_file_save(graphic, graphic.layers[0], cwd + '/test.png', '?')

我对文档没有任何帮助,感谢您提供给我的任何帮助/指导

0 个答案:

没有答案