GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_icc.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2024 Cyril Hrubis <metan@ucw.cz>
4 */
5
6 /*
7
8 ICC profile parser.
9
10 */
11
12#ifndef LOADERS_GP_ICC_H
13#define LOADERS_GP_ICC_H
14
15#include <loaders/gp_io.h>
16#include <loaders/gp_data_storage.h>
17
18int gp_read_icc(gp_io *io, gp_storage *storage);
19
20#endif /* LOADERS_GP_ICC_H */