aboutsummaryrefslogtreecommitdiff
path: root/fastiv-io.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-11-28 03:37:04 +0100
committerPřemysl Eric Janouch <p@janouch.name>2021-11-28 03:39:36 +0100
commitd930b2b24534daf4dd89adfca8ea420829e61915 (patch)
tree8a79b6665b74d996776ee9026978401cb7be6134 /fastiv-io.c
parent666bfc0759b5be23980fb94f32809a1d26bde565 (diff)
downloadfiv-d930b2b24534daf4dd89adfca8ea420829e61915.tar.gz
fiv-d930b2b24534daf4dd89adfca8ea420829e61915.tar.xz
fiv-d930b2b24534daf4dd89adfca8ea420829e61915.zip
Get ICC profile and orientation from libtiff
Pain has been outsourced to someone from the past, I just blindly trust the orientation mapping.
Diffstat (limited to 'fastiv-io.c')
-rw-r--r--fastiv-io.c57
1 files changed, 40 insertions, 17 deletions
diff --git a/fastiv-io.c b/fastiv-io.c
index a9654c0..5ce8ea3 100644
--- a/fastiv-io.c
+++ b/fastiv-io.c
@@ -1134,34 +1134,57 @@ load_libtiff_directory(TIFF *tiff, GError **error)
set_error(error, emsg);
return NULL;
}
+
+ cairo_surface_t *surface = NULL;
if (image.width > G_MAXINT || image.height >= G_MAXINT ||
G_MAXUINT32 / image.width < image.height) {
set_error(error, "image dimensions too large");
- TIFFRGBAImageEnd(&image);
- return NULL;
+ goto fail;
}
- cairo_surface_t *surface = cairo_image_surface_create(
+ surface = cairo_image_surface_create(
CAIRO_FORMAT_ARGB32, image.width, image.height);
- uint32_t *raster = (uint32_t *) cairo_image_surface_get_data(surface);
image.req_orientation = ORIENTATION_LEFTTOP;
- if (TIFFRGBAImageGet(&image, raster, image.width, image.height)) {
- // Needs to be converted from ABGR to ARGB for Cairo,
- // and then premultiplied.
- for (uint32_t i = image.width * image.height; i--; ) {
- uint32_t pixel = raster[i],
- a = TIFFGetA(pixel),
- b = TIFFGetB(pixel) * a / 255,
- g = TIFFGetG(pixel) * a / 255,
- r = TIFFGetR(pixel) * a / 255;
- raster[i] = a << 24 | r << 16 | g << 8 | b;
- }
- cairo_surface_mark_dirty(surface);
- } else {
+ uint32_t *raster = (uint32_t *) cairo_image_surface_get_data(surface);
+ if (!TIFFRGBAImageGet(&image, raster, image.width, image.height)) {
g_clear_pointer(&surface, cairo_surface_destroy);
+ goto fail;
+ }
+
+ // Needs to be converted from ABGR to alpha-premultiplied ARGB for Cairo.
+ for (uint32_t i = image.width * image.height; i--;) {
+ uint32_t pixel = raster[i],
+ a = TIFFGetA(pixel),
+ b = TIFFGetB(pixel) * a / 255,
+ g = TIFFGetG(pixel) * a / 255,
+ r = TIFFGetR(pixel) * a / 255;
+ raster[i] = a << 24 | r << 16 | g << 8 | b;
}
+ cairo_surface_mark_dirty(surface);
+ // XXX: The whole file is essentially an Exif, any ideas?
+
+ const uint32_t icc_length = 0;
+ const void *icc_profile = NULL;
+ if (TIFFGetField(tiff, TIFFTAG_ICCPROFILE, &icc_length, &icc_profile)) {
+ cairo_surface_set_user_data(surface, &fastiv_io_key_icc,
+ g_bytes_new(icc_profile, icc_length),
+ (cairo_destroy_func_t) g_bytes_unref);
+ }
+
+ // Don't ask. The API is high, alright, I'm just not sure about the level.
+ uint16_t orientation = 0;
+ if (TIFFGetField(tiff, TIFFTAG_ORIENTATION, &orientation)) {
+ if (orientation == 5 || orientation == 7)
+ cairo_surface_set_user_data(surface, &fastiv_io_key_orientation,
+ (void *) (uintptr_t) 5, NULL);
+ if (orientation == 6 || orientation == 8)
+ cairo_surface_set_user_data(surface, &fastiv_io_key_orientation,
+ (void *) (uintptr_t) 7, NULL);
+ }
+
+fail:
TIFFRGBAImageEnd(&image);
return surface;
}