Gimp.Drawable.merge_filter
@accepts(Gimp.Drawable, Gimp.DrawableFilter)
@returns(none)
def merge_filter(self, filter):
# Python wrapper for gimp_drawable_merge_filter()
This procedure applies the specified drawable effect on self and merge it (therefore before any non-destructive effects are computed).
The self argument must be the same as the one used when you created the effect with [ctor@Gimp.DrawableFilter.new]. Once this is run, filter is not valid anymore and you should not try to do anything with it. In particular, you must customize the operation's arguments as received with [method@Gimp.DrawableFilter.get_config] or set the filter's opacity and blend mode before merging the effect.
Since 3.0
- self
The drawable.
- filter
The drawable filter to merge.