[Gimp-user] whats the best way to learn script-fu
Sven Neumann
sven at gimp.org
Wed Apr 2 11:45:13 PDT 2008
Hi,
On Wed, 2008-04-02 at 21:36 +1030, David Gowers wrote:
> register(
> "batch_unsharp_mask", "", "", "", "", "",
> "<Toolbox>/Xtns/Languages/Python-Fu/Test/_Batch Unsharp Mask", "",
> [
> (PF_STRING, "file_pattern", "file_pattern", "*.png"),
> (PF_FLOAT, "radius", "Radius", 5.0 ),
> (PF_FLOAT, "amount", "Amount", 0.5 ),
> (PF_INT32, "threshold", "Threshold", 0 )
> ],
> [],
> batch_unsharp_mask
> )
It would be so much nicer if example scripts like this one would use the
new register API instead of the deprecated one that is being used here.
Please use this instead:
register(
"batch-unsharp-mask", "", "", "", "", "",
"_Batch Unsharp Mask", "",
[
(PF_STRING, "file-pattern", "File Pattern", "*.png"),
(PF_FLOAT, "radius", "Radius", 5.0 ),
(PF_FLOAT, "amount", "Amount", 0.5 ),
(PF_INT32, "threshold", "Threshold", 0 )
],
[],
batch_unsharp_mask,
menu="<Toolbox>/Xtns/Languages/Python-Fu/Test"
)
Sven
More information about the Gimp-user
mailing list