added the jxl save functions to foreign.h

This commit is contained in:
Adil Benameur 2021-07-19 01:22:46 +02:00
parent 2b0aae2d72
commit 914c7cf185
1 changed files with 6 additions and 0 deletions

View File

@ -699,6 +699,12 @@ int vips_jxlload_buffer( void *buf, size_t len, VipsImage **out, ... )
__attribute__((sentinel));
int vips_jxlload( const char *filename, VipsImage **out, ... )
__attribute__((sentinel));
int vips_jxlsave( VipsImage *in, const char *filename, ... )
__attribute__((sentinel));
int vips_jxlsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
__attribute__((sentinel));
int vips_jxlsave_target( VipsImage *in, VipsTarget *target, ... )
__attribute__((sentinel));
/**
* VipsForeignDzLayout: