1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:57:45 +00:00

LibGfx+image: Implement writing ICC profiles to jpeg files

This commit is contained in:
Nico Weber 2024-01-26 09:37:13 -05:00 committed by Tim Flynn
parent 83ab9f7c2d
commit db4982bd29
3 changed files with 44 additions and 1 deletions

View file

@ -12,6 +12,7 @@
namespace Gfx {
struct JPEGEncoderOptions {
Optional<ReadonlyBytes> icc_data;
u8 quality { 75 };
};