pantry/projects/jpeg.org/jpegxl/fixture1.c
Max Howell c2eb600926
+jpeg-xl (#1315)
Closes #198
2023-04-11 07:40:59 -04:00

12 lines
203 B
C

#include <jxl/encode.h>
#include <stdlib.h>
int main() {
JxlEncoder* enc = JxlEncoderCreate(NULL);
if (enc == NULL) {
return EXIT_FAILURE;
}
JxlEncoderDestroy(enc);
return EXIT_SUCCESS;
}