pantry/projects/jpeg.org/jpegxl/fixture1.c

12 lines
203 B
C
Raw Permalink Normal View History

2023-04-11 14:40:59 +03:00
#include <jxl/encode.h>
#include <stdlib.h>
int main() {
JxlEncoder* enc = JxlEncoderCreate(NULL);
if (enc == NULL) {
return EXIT_FAILURE;
}
JxlEncoderDestroy(enc);
return EXIT_SUCCESS;
}