-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicc.h
More file actions
30 lines (26 loc) · 1.4 KB
/
icc.h
File metadata and controls
30 lines (26 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* icc.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dlesieur <dlesieur@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/29 23:37:53 by marvin #+# #+# */
/* Updated: 2026/03/09 00:12:38 by dlesieur ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef ICC_H
# define ICC_H
# include "str.h"
void lodepng_clear_icc(t_png_info *info);
unsigned int lodepng_assign_icc(t_png_info *info, const char *name,
const unsigned char *profile,
unsigned int profile_size);
unsigned int lodepng_set_icc(t_png_info *info, const char *name,
const unsigned char *profile,
unsigned int profile_size);
unsigned int is_gray_icc_profile(const unsigned char *profile,
unsigned int size);
unsigned int is_rgb_icc_profile(const unsigned char *profile,
unsigned int size);
#endif