Skip to content Skip to sidebar Skip to footer

Gimp: Start Script Without Image

Well, I'm trying to write a python plug-in for Gimp, but it wont start without first loading an image... What can I do about that?

Solution 1:

As I commented on your other question Gimp: why can't I register this? - the problem is that you are passing the "*" value on the "image type" parameter when you are making your register call.

Just drop it, and pass an empty string instead.

Post a Comment for "Gimp: Start Script Without Image"