Add remove function to the C++ binding

To remove an item of metadata.
This commit is contained in:
Kleis Auke Wolthuizen 2019-01-10 17:39:45 +01:00
parent cd340d0ace
commit bd5711ef8e
1 changed files with 6 additions and 0 deletions

View File

@ -422,6 +422,12 @@ public:
return( value );
}
bool
remove( const char *name ) const
{
return( vips_image_remove( get_image(), name ) );
}
static VOption *
option()
{