Set correct description for heifsave argument

This commit is contained in:
Philipp Trulson 2021-03-24 22:57:06 +01:00
parent 6ab30ca732
commit 13a4d9f7ea
No known key found for this signature in database
GPG Key ID: 73CBABEA8D422ABC
2 changed files with 2 additions and 2 deletions

View File

@ -2983,7 +2983,7 @@ static VImage heifload_source( VSource source, VOption *options = 0 );
* - **background** -- Background value, std::vector<double>. * - **background** -- Background value, std::vector<double>.
* - **page_height** -- Set page height for multipage save, int. * - **page_height** -- Set page height for multipage save, int.
* *
* @param filename Filename to load from. * @param filename Filename to save to.
* @param options Set of options. * @param options Set of options.
*/ */
void heifsave( const char *filename, VOption *options = 0 ) const; void heifsave( const char *filename, VOption *options = 0 ) const;

View File

@ -566,7 +566,7 @@ vips_foreign_save_heif_file_class_init( VipsForeignSaveHeifFileClass *class )
VIPS_ARG_STRING( class, "filename", 1, VIPS_ARG_STRING( class, "filename", 1,
_( "Filename" ), _( "Filename" ),
_( "Filename to load from" ), _( "Filename to save to" ),
VIPS_ARGUMENT_REQUIRED_INPUT, VIPS_ARGUMENT_REQUIRED_INPUT,
G_STRUCT_OFFSET( VipsForeignSaveHeifFile, filename ), G_STRUCT_OFFSET( VipsForeignSaveHeifFile, filename ),
NULL ); NULL );