Skip to content

Commit bb8d107

Browse files
committed
final polish
1 parent 44bc942 commit bb8d107

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
- add vips_tiffsave_target()
2828
- add vips_target_end(), deprecate vips_target_finish()
2929
- add "mixed" to webpsave [dloebl]
30+
- add support for ICC profiles and linear encoding to JXL load and save [f1ac]
3031

3132
26/11/21 started 8.12.3
3233
- better arg checking for vips_hist_find_ndim() [travisbell]

libvips/foreign/jxlload.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535

3636
/*
3737
#define DEBUG_VERBOSE
38-
*/
3938
#define DEBUG
39+
*/
4040

4141
#ifdef HAVE_CONFIG_H
4242
#include <config.h>
@@ -434,7 +434,6 @@ vips_foreign_load_jxl_set_header( VipsForeignLoadJxl *jxl, VipsImage *out )
434434
break;
435435

436436
case VIPS_FORMAT_USHORT:
437-
case VIPS_FORMAT_UINT:
438437
interpretation = VIPS_INTERPRETATION_GREY16;
439438
break;
440439

@@ -451,7 +450,6 @@ vips_foreign_load_jxl_set_header( VipsForeignLoadJxl *jxl, VipsImage *out )
451450
break;
452451

453452
case VIPS_FORMAT_USHORT:
454-
case VIPS_FORMAT_UINT:
455453
interpretation = VIPS_INTERPRETATION_RGB16;
456454
break;
457455

libvips/foreign/jxlsave.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@
3333
3434
*/
3535

36+
/*
3637
#define DEBUG
38+
*/
3739

3840
#ifdef HAVE_CONFIG_H
3941
#include <config.h>

0 commit comments

Comments
 (0)