Gimp.Drawable.append_filter

@accepts(Gimp.Drawable, Gimp.DrawableFilter)
@returns(none)
def append_filter(self, filter):
    # Python wrapper for gimp_drawable_append_filter()
  

This procedure appends the specified drawable effect at the top of the effect list of self.

The self argument must be the same as the one used when you created the effect with [ctor@Gimp.DrawableFilter.new]. Some effects may be slower than others to render. In order to minimize processing time, it is preferred to customize the operation's arguments as received with [method@Gimp.DrawableFilter.get_config] before adding the effect.

Since 3.0

self

The drawable.

filter

The drawable filter to append.