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

LibGfx/TIFF: Add support for the ICCProfile tag

This commit is contained in:
Lucas CHOLLET 2023-11-28 21:16:43 -05:00 committed by Andreas Kling
parent 5622e7d77c
commit 4994609af0
5 changed files with 26 additions and 0 deletions

View file

@ -28,6 +28,8 @@ public:
virtual ErrorOr<ImageFrameDescriptor> frame(size_t index, Optional<IntSize> ideal_size = {}) override;
virtual ErrorOr<Optional<ReadonlyBytes>> icc_data() override;
private:
TIFFImageDecoderPlugin(NonnullOwnPtr<FixedMemoryStream>);