Set default JXL encoder speed to 5

This commit is contained in:
Ingvar Stepanyan
2020-10-29 00:13:17 +00:00
parent 5c8f0739a0
commit 6dab5e3ce7

View File

@@ -11,6 +11,6 @@ export const mimeType = 'image/jpegxl';
export const extension = 'jxl'; export const extension = 'jxl';
// These come from struct WebPConfig in encode.h. // These come from struct WebPConfig in encode.h.
export const defaultOptions: EncodeOptions = { export const defaultOptions: EncodeOptions = {
speed: 1, speed: 5,
quality: 1, quality: 1,
}; };