Gimp.Image.metadata_save_filter

@accepts(Gimp.Image, unicode, Gimp.Metadata, Gimp.MetadataSaveFlags, Gio.File)
@returns(Gimp.Metadata)
def metadata_save_filter(self, mime_type, metadata, flags, file):
    # Python wrapper for gimp_image_metadata_save_filter()
  

Filters the metadata retrieved from the image with Gimp.Image.metadata_save_prepare, taking into account the passed flags.

Note that the self passed to this function might be different from the image passed to Gimp.Image.metadata_save_prepare, due to whatever file export conversion happened in the meantime

This is an alternative to gimp_image_metadata_save_finish when you want to save metadata yourself and you need only filtering processing.

Since 3.0

self

The actually saved image

mime_type

The saved file's mime-type

metadata

The metadata to export

flags

Flags to specify what of the metadata to save

file

The file self was saved to or NULL if file was not saved yet

Returns