gpt4 book ai didi

pdb - GIMP python-fu调用函数plug_in_beautify 'wrong number of parameters'

转载 作者:行者123 更新时间:2023-12-05 04:09:41 28 4
gpt4 key购买 nike

我尝试在 python 命令行中使用很棒的 Beautify 插件,但我无法以正确的方式调用该函数!

这是我的代码:

import os
from gimpfu import *

inputPath = os.path.join('xxxx', 'fire.png')

if(file.lower().endswith(('.png'))):
image = pdb.file_png_load(inputPath, inputPath)
if(file.lower().endswith(('.jpeg', '.jpg'))):
image = pdb.file_jpeg_load(inputPath, inputPath)

drawable = pdb.gimp_image_get_active_layer(image)
pdb.plug_in_beautify(1,image,drawable,67,100)
# Traceback (most recent call last):
# File "<input>", line 1, in <module>
# TypeError: wrong number of parameters

pdb.plug_in_beautify.nparams # = 5
pdb.plug_in_beautify.params
# ((0, 'run-mode', 'The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }'),
# (13, 'image', 'Input image'),
# (16, 'drawable', 'Input drawable'),
# (0, 'effect', 'The effect to apply { SOFT_LIGHT (1), WARM (2), SHARPEN (3), SOFT (4), REMOVE_FOG (5), STRONG_CONTRAST (6), SMART_COLOR (7),... PINK_PURPLE_GRADIENG (80), PINK_BLUE_GRADIENT (81) }'),
# (3, 'opacity', 'The effect opacity (0 <= opacity <= 100)'))

那么,如果我的函数需要 5 个而我输入了 5 个,那么为什么我的函数有“错误数量的参数”?

任何人都可以用正确的语法帮助我吗?

最佳答案

IMO 不应进入运行模式

编辑:输入 pdb.plug_in_beautify(image,drawable,67,100)

python 不使用(不需要)运行模式

关于pdb - GIMP python-fu调用函数plug_in_beautify 'wrong number of parameters',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45501330/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com