(04-01-2025, 09:44 PM)silenuznowan Wrote: I'm following the docs my function looks like this:
Code:
def insert_layer(image: Gimp.Image, layer: Gimp.Layer, parent: Gimp.Layer, position: int = 0) -> bool:
procedure = Gimp.get_pdb().lookup_procedure('gimp-image-insert-layer')
config = procedure.create_config()
config.set_property('image', image)
config.set_property('layer', layer)
config.set_property('parent', parent)
config.set_property('position', position)
result = procedure.run(config)
success = result.index(0)
return success
And Is_group
Code:
def is_group_item (item: Gimp.Item):
procedure = Gimp.get_pdb().lookup_procedure('gimp-item-is-group');
config = procedure.create_config();
config.set_property('item', item);
result = procedure.run(config);
success = result.index(0);
group = result.index(1)
return group
So I'm not sure what your suggesting I do differently.
Also how do I now get a name of the layer? layer.name results in an error that attribute is not found.
Thanks.
So, you are doing the very hard way, try this instead:
Code:
image.insert_layer(layer,parent,position) # from https://developer.gimp.org/api/3.0/libgimp/method.Image.insert_layer.html
isGroup=iterm.isGroup(). # from https://developer.gimp.org/api/3.0/libgimp/method.Item.is_group.html
# But can also be done with instanceof (item,Gimp.GroupLayer)