1 #ifndef _IMAGES_IMAGES_H
2 #define _IMAGES_IMAGES_H
4 #include "lib/mempool.h"
12 IMAGE_ERR_UNSPECIFIED,
13 IMAGE_ERR_NOT_IMPLEMENTED,
14 IMAGE_ERR_INVALID_DIMENSIONS,
15 IMAGE_ERR_INVALID_FILE_FORMAT,
16 IMAGE_ERR_INVALID_PIXEL_FORMAT,
17 IMAGE_ERR_READ_FAILED,
18 IMAGE_ERR_WRITE_FAILED,
24 enum image_error err_code;
28 void image_thread_init(struct image_thread *thread);
29 void image_thread_cleanup(struct image_thread *thread);
32 image_thread_flush(struct image_thread *thread)
35 thread->err_msg = NULL;
36 mp_flush(thread->pool);
40 image_thread_err(struct image_thread *thread, uns code, char *msg)
42 thread->err_code = code;
43 thread->err_msg = (byte *)msg;
47 image_thread_err_dup(struct image_thread *thread, uns code, char *msg)
49 thread->err_code = code;
50 thread->err_msg = mp_strdup(thread->pool, msg);
53 void image_thread_err_format(struct image_thread *thread, uns code, char *msg, ...);
55 /* basic image manupulation */
57 #define IMAGE_MAX_SIZE 0xffffU /* maximum number of cols/rows, must be <(1<<16) */
58 #define IMAGE_SSE_ALIGN_SIZE (MAX(16, sizeof(uns)))
62 COLOR_SPACE_GRAYSCALE,
68 IMAGE_COLOR_SPACE = 0x7, /* mask for enum color_space */
69 IMAGE_ALPHA = 0x8, /* alpha channel */
70 IMAGE_PIXELS_ALIGNED = 0x10, /* align pixel size to the nearest power of two */
71 IMAGE_SSE_ALIGNED = 0x20, /* align scanlines to multiples of 16 bytes (both start and size) */
72 IMAGE_CHANNELS_FORMAT = IMAGE_COLOR_SPACE | IMAGE_ALPHA,
73 IMAGE_PIXEL_FORMAT = IMAGE_CHANNELS_FORMAT | IMAGE_PIXELS_ALIGNED,
74 IMAGE_ALIGNED = IMAGE_PIXELS_ALIGNED | IMAGE_SSE_ALIGNED,
78 byte *pixels; /* left top pixel, there are at least sizeof(uns)
79 unsed bytes after the buffer (possible optimizations) */
80 u32 cols; /* number of columns */
81 u32 rows; /* number of rows */
82 u32 pixel_size; /* size of pixel (1, 2, 3 or 4) */
83 u32 row_size; /* scanline size in bytes */
84 u32 image_size; /* size of pixels buffer (rows * rows_size) */
85 u32 flags; /* enum image_flag */
88 struct image *image_new(struct image_thread *it, uns cols, uns rows, uns flags, struct mempool *pool);
89 struct image *image_clone(struct image_thread *it, struct image *src, uns flags, struct mempool *pool);
90 void image_destroy(struct image *img); /* only with NULL mempool */
91 void image_clear(struct image_thread *it, struct image *img);
93 byte *color_space_to_name(enum color_space cs);
94 byte *image_channels_format_to_name(uns format);
95 uns image_name_to_channels_format(byte *name);
99 int image_scale(struct image_thread *thread, struct image *dest, struct image *src);
100 void image_dimensions_fit_to_box(u32 *cols, u32 *rows, u32 max_cols, u32 max_rows, uns upsample);
105 IMAGE_FORMAT_UNDEFINED,
113 /* R - read_header input */
114 /* H - read_header output */
115 /* I - read_data input */
116 /* O - read_data output */
117 /* W - write input */
119 struct image *image; /* [ OW] - image data */
120 enum image_format format; /* [R W] - file format (IMAGE_FORMAT_x) */
121 struct fastbuf *fastbuf; /* [R W] - source/destination stream */
122 struct mempool *pool; /* [ I ] - parameter to image_new */
123 u32 cols; /* [ HI ] - number of columns, parameter to image_new */
124 u32 rows; /* [ HI ] - number of rows, parameter to image_new */
125 u32 flags; /* [ HI ] - parameter to image new, read_header fills IMAGE_CHANNELS_FORMAT */
126 u32 jpeg_quality; /* [ W] - JPEG compression quality (1..100) */
127 u32 number_of_colors; /* [ H ] - number of image colors */
128 u32 has_palette; /* [ H ] - true for image with indexed colors */
131 struct image_thread *thread;
132 struct mempool *internal_pool;
135 void (*read_cancel)(struct image_io *io);
138 void image_io_init(struct image_thread *it, struct image_io *io);
139 void image_io_cleanup(struct image_io *io);
140 void image_io_reset(struct image_io *io);
142 int image_io_read_header(struct image_io *io);
143 struct image *image_io_read_data(struct image_io *io, int ref);
144 struct image *image_io_read(struct image_io *io, int ref);
146 int image_io_write(struct image_io *io);
148 byte *image_format_to_extension(enum image_format format);
149 enum image_format image_extension_to_format(byte *extension);
150 enum image_format image_file_name_to_format(byte *file_name);
154 #ifdef CONFIG_IMAGES_LIBJPEG
155 int libjpeg_read_header(struct image_io *io);
156 int libjpeg_read_data(struct image_io *io);
157 int libjpeg_write(struct image_io *io);
160 #ifdef CONFIG_IMAGES_LIBPNG
161 int libpng_read_header(struct image_io *io);
162 int libpng_read_data(struct image_io *io);
163 int libpng_write(struct image_io *io);
166 #ifdef CONFIG_IMAGES_LIBUNGIF
167 int libungif_read_header(struct image_io *io);
168 int libungif_read_data(struct image_io *io);
171 #ifdef CONFIG_IMAGES_LIBMAGICK
172 int libmagick_read_header(struct image_io *io);
173 int libmagick_read_data(struct image_io *io);
174 int libmagick_write(struct image_io *io);