don't match against horizontal lines
[imager.git] / imager.h
CommitLineData
02d1d628
AMH
1#ifndef _IMAGE_H_
2#define _IMAGE_H_
3
e11d297f 4#include "imconfig.h"
696cb85d 5#include "immacros.h"
7ac6a2e9 6#include "imio.h"
02d1d628 7#include "iolayer.h"
02d1d628
AMH
8#include "stackmach.h"
9
02d1d628
AMH
10#ifndef _MSC_VER
11#include <unistd.h>
12#endif
13#include <string.h>
14#include <stdio.h>
15#include <math.h>
16#include <stdlib.h>
17
18#ifdef SUNOS
19#include <strings.h>
20#endif
21
22#ifndef PI
23#define PI 3.14159265358979323846
24#endif
25
92bda632 26#include "imdatatypes.h"
02d1d628
AMH
27
28undef_int i_has_format(char *frmt);
29
30/* constructors and destructors */
31
32i_color *ICL_new_internal( unsigned char r,unsigned char g,unsigned char b,unsigned char a);
33i_color *ICL_set_internal(i_color *cl,unsigned char r,unsigned char g,unsigned char b,unsigned char a);
97ac0a96 34void ICL_info (const i_color *cl);
02d1d628
AMH
35void ICL_DESTROY (i_color *cl);
36void ICL_add (i_color *dst, i_color *src, int ch);
37
faa9b3e7
TC
38extern i_fcolor *i_fcolor_new(double r, double g, double b, double a);
39extern void i_fcolor_destroy(i_fcolor *cl);
40
6607600c
TC
41extern void i_rgb_to_hsvf(i_fcolor *color);
42extern void i_hsv_to_rgbf(i_fcolor *color);
efdc2568
TC
43extern void i_rgb_to_hsv(i_color *color);
44extern void i_hsv_to_rgb(i_color *color);
6607600c 45
696cb85d 46i_img *im_img_8_new(pIMCTX, i_img_dim x,i_img_dim y,int ch);
44d86483 47#define i_img_empty(im, x, y) i_img_empty_ch((im), (x), (y), 3)
696cb85d 48i_img *im_img_empty_ch(pIMCTX, i_img *im,i_img_dim x,i_img_dim y,int ch);
44d86483 49#define i_img_empty_ch(im, x, y, ch) im_img_empty_ch(aIMCTX, (im), (x), (y), (ch))
02d1d628
AMH
50void i_img_exorcise(i_img *im);
51void i_img_destroy(i_img *im);
696cb85d 52i_img *im_img_alloc(pIMCTX);
696cb85d 53void im_img_init(pIMCTX, i_img *im);
02d1d628 54
8d14daab 55void i_img_info(i_img *im,i_img_dim *info);
02d1d628 56
8d14daab
TC
57extern i_img *i_sametype(i_img *im, i_img_dim xsize, i_img_dim ysize);
58extern i_img *i_sametype_chans(i_img *im, i_img_dim xsize, i_img_dim ysize, int channels);
faa9b3e7 59
02d1d628
AMH
60/* Image feature settings */
61
62void i_img_setmask (i_img *im,int ch_mask);
63int i_img_getmask (i_img *im);
64int i_img_getchannels(i_img *im);
d5477d3d
TC
65i_img_dim i_img_get_width(i_img *im);
66i_img_dim i_img_get_height(i_img *im);
02d1d628
AMH
67
68/* Base functions */
69
cf8c77ae
TC
70extern int (i_ppix)(i_img *im,i_img_dim x,i_img_dim y, const i_color *val);
71extern int (i_gpix)(i_img *im,i_img_dim x,i_img_dim y,i_color *val);
72extern int (i_ppixf)(i_img *im,i_img_dim x,i_img_dim y, const i_fcolor *val);
73extern int (i_gpixf)(i_img *im,i_img_dim x,i_img_dim y,i_fcolor *val);
74
75extern i_img_dim (i_plin)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y,
76 const i_color *vals);
77extern i_img_dim (i_glin)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y,
78 i_color *vals);
79extern i_img_dim (i_plinf)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y,
80 const i_fcolor *vals);
81extern i_img_dim (i_glinf)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y,
82 i_fcolor *vals);
83extern i_img_dim (i_gsamp)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y,
84 i_sample_t *samp, const int *chans, int chan_count);
85extern i_img_dim
86(i_gsampf)(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y, i_fsample_t *samp,
87 const int *chans, int chan_count);
88extern i_img_dim
89(i_gpal)(i_img *im, i_img_dim x, i_img_dim r, i_img_dim y, i_palidx *vals);
90extern i_img_dim
91(i_ppal)(i_img *im, i_img_dim x, i_img_dim r, i_img_dim y, const i_palidx *vals);
92extern int (i_addcolors)(i_img *im, const i_color *colors, int count);
93extern int (i_getcolors)(i_img *im, int i, i_color *, int count);
94extern int (i_colorcount)(i_img *im);
95extern int (i_maxcolors)(i_img *im);
96extern int (i_findcolor)(i_img *im, const i_color *color, i_palidx *entry);
97extern int (i_setcolors)(i_img *im, int index, const i_color *colors,
92bda632 98 int count);
f261c328 99
02d1d628 100
97ac0a96
TC
101extern i_fill_t *i_new_fill_solidf(const i_fcolor *c, int combine);
102extern i_fill_t *i_new_fill_solid(const i_color *c, int combine);
f1ac5027 103extern i_fill_t *
97ac0a96 104i_new_fill_hatch(const i_color *fg, const i_color *bg, int combine, int hatch,
8d14daab 105 const unsigned char *cust_hatch, i_img_dim dx, i_img_dim dy);
f1ac5027 106extern i_fill_t *
97ac0a96 107i_new_fill_hatchf(const i_fcolor *fg, const i_fcolor *bg, int combine, int hatch,
8d14daab 108 const unsigned char *cust_hatch, i_img_dim dx, i_img_dim dy);
f576ce7e 109extern i_fill_t *
8d14daab 110i_new_fill_image(i_img *im, const double *matrix, i_img_dim xoff, i_img_dim yoff, int combine);
52f2b10a 111extern i_fill_t *i_new_fill_opacity(i_fill_t *, double alpha_mult);
f1ac5027
TC
112extern void i_fill_destroy(i_fill_t *fill);
113
8d14daab 114float i_gpix_pch(i_img *im,i_img_dim x,i_img_dim y,int ch);
02d1d628
AMH
115
116/* functions for drawing primitives */
117
8d14daab
TC
118void i_box (i_img *im,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,const i_color *val);
119void i_box_filled (i_img *im,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,const i_color *val);
120int i_box_filledf (i_img *im,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,const i_fcolor *val);
121void i_box_cfill(i_img *im, i_img_dim x1, i_img_dim y1, i_img_dim x2, i_img_dim y2, i_fill_t *fill);
122void i_line (i_img *im,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,const i_color *val, int endp);
123void i_line_aa (i_img *im,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,const i_color *val, int endp);
124void i_arc (i_img *im,i_img_dim x,i_img_dim y,double rad,double d1,double d2,const i_color *val);
125int i_arc_out(i_img *im,i_img_dim x,i_img_dim y,i_img_dim rad,double d1,double d2,const i_color *val);
126int i_arc_out_aa(i_img *im,i_img_dim x,i_img_dim y,i_img_dim rad,double d1,double d2,const i_color *val);
97ac0a96 127void i_arc_aa (i_img *im, double x, double y, double rad, double d1, double d2, const i_color *val);
8d14daab 128void i_arc_cfill(i_img *im,i_img_dim x,i_img_dim y,double rad,double d1,double d2,i_fill_t *fill);
a8652edf 129void i_arc_aa_cfill(i_img *im,double x,double y,double rad,double d1,double d2,i_fill_t *fill);
8d14daab 130void i_circle_aa (i_img *im,double x, double y,double rad,const i_color *val);
bf18ef3a 131void i_circle_aa_fill(i_img *im,double x, double y,double rad,i_fill_t *fill);
40068b33
TC
132int i_circle_out (i_img *im,i_img_dim x, i_img_dim y, i_img_dim rad,const i_color *val);
133int i_circle_out_aa (i_img *im,i_img_dim x, i_img_dim y, i_img_dim rad,const i_color *val);
8d14daab
TC
134void i_copyto (i_img *im,i_img *src,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,i_img_dim tx,i_img_dim ty);
135void i_copyto_trans(i_img *im,i_img *src,i_img_dim x1,i_img_dim y1,i_img_dim x2,i_img_dim y2,i_img_dim tx,i_img_dim ty,const i_color *trans);
92bda632 136i_img* i_copy (i_img *src);
8d14daab 137int i_rubthru (i_img *im, i_img *src, i_img_dim tx, i_img_dim ty, i_img_dim src_minx, i_img_dim src_miny, i_img_dim src_maxx, i_img_dim src_maxy);
9b1ec2b8
TC
138extern int
139i_compose_mask(i_img *out, i_img *src, i_img *mask,
8d14daab
TC
140 i_img_dim out_left, i_img_dim out_top, i_img_dim src_left, i_img_dim src_top,
141 i_img_dim mask_left, i_img_dim mask_top, i_img_dim width, i_img_dim height,
9b1ec2b8
TC
142 int combine, double opacity);
143extern int
144i_compose(i_img *out, i_img *src,
8d14daab
TC
145 i_img_dim out_left, i_img_dim out_top, i_img_dim src_left, i_img_dim src_top,
146 i_img_dim width, i_img_dim height, int combine, double opacity);
02d1d628 147
b47464c1
TC
148extern i_img *
149i_combine(i_img **src, const int *channels, int in_count);
150
142c26ff 151undef_int i_flipxy (i_img *im, int direction);
faa9b3e7
TC
152extern i_img *i_rotate90(i_img *im, int degrees);
153extern i_img *i_rotate_exact(i_img *im, double amount);
97ac0a96 154extern i_img *i_rotate_exact_bg(i_img *im, double amount, const i_color *backp, const i_fcolor *fbackp);
8d14daab
TC
155extern i_img *i_matrix_transform(i_img *im, i_img_dim xsize, i_img_dim ysize, const double *matrix);
156extern i_img *i_matrix_transform_bg(i_img *im, i_img_dim xsize, i_img_dim ysize, const double *matrix, const i_color *backp, const i_fcolor *fbackp);
142c26ff 157
97ac0a96 158void i_bezier_multi(i_img *im,int l,const double *x,const double *y,const i_color *val);
1c5252ed
TC
159int i_poly_aa (i_img *im,int l,const double *x,const double *y,const i_color *val);
160int i_poly_aa_cfill(i_img *im,int l,const double *x,const double *y,i_fill_t *fill);
02d1d628 161
8d14daab
TC
162undef_int i_flood_fill (i_img *im,i_img_dim seedx,i_img_dim seedy, const i_color *dcol);
163undef_int i_flood_cfill(i_img *im, i_img_dim seedx, i_img_dim seedy, i_fill_t *fill);
164undef_int i_flood_fill_border (i_img *im,i_img_dim seedx,i_img_dim seedy, const i_color *dcol, const i_color *border);
165undef_int i_flood_cfill_border(i_img *im, i_img_dim seedx, i_img_dim seedy, i_fill_t *fill, const i_color *border);
a321d497 166
02d1d628
AMH
167
168/* image processing functions */
169
167660cd 170int i_gaussian (i_img *im, double stdev);
6a3cbaef 171int i_conv (i_img *im,const double *coeff,int len);
b6381851 172void i_unsharp_mask(i_img *im, double stddev, double scale);
02d1d628 173
f5991c03 174/* colour manipulation */
62869327 175extern i_img *i_convert(i_img *src, const double *coeff, int outchan, int inchan);
faa9b3e7 176extern void i_map(i_img *im, unsigned char (*maps)[256], unsigned int mask);
f5991c03 177
02d1d628 178float i_img_diff (i_img *im1,i_img *im2);
e41cfe8f 179double i_img_diffd(i_img *im1,i_img *im2);
4498c8bd 180int i_img_samef(i_img *im1,i_img *im2, double epsilon, const char *what);
02d1d628
AMH
181
182/* font routines */
183
d03fd5a4 184#ifdef HAVE_LIBTT
db65c8df 185
eee347a1
TC
186extern void i_tt_start(void);
187
97ac0a96 188TT_Fonthandle* i_tt_new(const char *fontname);
02d1d628 189void i_tt_destroy( TT_Fonthandle *handle );
8d14daab
TC
190undef_int i_tt_cp( TT_Fonthandle *handle,i_img *im,i_img_dim xb,i_img_dim yb,int channel,double points,char const* txt,size_t len,int smooth, int utf8, int align);
191undef_int i_tt_text( TT_Fonthandle *handle, i_img *im, i_img_dim xb, i_img_dim yb, const i_color *cl, double points, char const* txt, size_t len, int smooth, int utf8, int align);
192undef_int i_tt_bbox( TT_Fonthandle *handle, double points,const char *txt,size_t len,i_img_dim cords[6], int utf8);
193size_t i_tt_has_chars(TT_Fonthandle *handle, char const *text, size_t len, int utf8, char *out);
3799c4d1 194void i_tt_dump_names(TT_Fonthandle *handle);
8d14daab 195size_t i_tt_face_name(TT_Fonthandle *handle, char *name_buf,
3799c4d1 196 size_t name_buf_size);
8d14daab 197size_t i_tt_glyph_name(TT_Fonthandle *handle, unsigned long ch, char *name_buf,
3799c4d1 198 size_t name_buf_size);
02d1d628
AMH
199
200#endif /* End of freetype headers */
201
92bda632
TC
202extern void i_quant_makemap(i_quantize *quant, i_img **imgs, int count);
203extern i_palidx *i_quant_translate(i_quantize *quant, i_img *img);
204extern void i_quant_transparent(i_quantize *quant, i_palidx *indices, i_img *img, i_palidx trans_index);
02d1d628 205
696cb85d 206i_img *im_img_pal_new(pIMCTX, i_img_dim x, i_img_dim y, int ch, int maxpal);
696cb85d 207
faa9b3e7
TC
208extern i_img *i_img_to_pal(i_img *src, i_quantize *quant);
209extern i_img *i_img_to_rgb(i_img *src);
8d14daab
TC
210extern i_img *i_img_masked_new(i_img *targ, i_img *mask, i_img_dim x, i_img_dim y,
211 i_img_dim w, i_img_dim h);
696cb85d 212extern i_img *im_img_16_new(pIMCTX, i_img_dim x, i_img_dim y, int ch);
167660cd 213extern i_img *i_img_to_rgb16(i_img *im);
696cb85d 214extern i_img *im_img_double_new(pIMCTX, i_img_dim x, i_img_dim y, int ch);
bfe6ba3f 215extern i_img *i_img_to_drgb(i_img *im);
faa9b3e7 216
9c106321 217extern int i_img_is_monochrome(i_img *im, int *zero_is_white);
594f5933
TC
218extern int i_get_file_background(i_img *im, i_color *bg);
219extern int i_get_file_backgroundf(i_img *im, i_fcolor *bg);
e10bf46e 220
ea1136fc 221const char * i_test_format_probe(io_glue *data, int length);
e10bf46e
AMH
222
223
8d14daab 224i_img * i_readraw_wiol(io_glue *ig, i_img_dim x, i_img_dim y, int datachannels, int storechannels, int intrl);
895dbd34 225undef_int i_writeraw_wiol(i_img* im, io_glue *ig);
02d1d628 226
d87dc9a4 227i_img * i_readpnm_wiol(io_glue *ig, int allow_incomplete);
2086be61 228i_img ** i_readpnm_multi_wiol(io_glue *ig, int *count, int allow_incomplete);
067d6bdc 229undef_int i_writeppm_wiol(i_img *im, io_glue *ig);
02d1d628 230
1ec86afa 231extern int i_writebmp_wiol(i_img *im, io_glue *ig);
d87dc9a4 232extern i_img *i_readbmp_wiol(io_glue *ig, int allow_incomplete);
02d1d628 233
84e51293
AMH
234int tga_header_verify(unsigned char headbuf[18]);
235
1ec86afa 236i_img * i_readtga_wiol(io_glue *ig, int length);
febba01f 237undef_int i_writetga_wiol(i_img *img, io_glue *ig, int wierdpack, int compress, char *idstring, size_t idlen);
1ec86afa 238
737a830c
AMH
239i_img * i_readrgb_wiol(io_glue *ig, int length);
240undef_int i_writergb_wiol(i_img *img, io_glue *ig, int wierdpack, int compress, char *idstring, size_t idlen);
241
8d14daab
TC
242i_img * i_scaleaxis(i_img *im, double Value, int Axis);
243i_img * i_scale_nn(i_img *im, double scx, double scy);
244i_img * i_scale_mixing(i_img *src, i_img_dim width, i_img_dim height);
04418ecc
AMH
245i_img * i_haar(i_img *im);
246int i_count_colors(i_img *im,int maxc);
a60905e4 247int i_get_anonymous_color_histo(i_img *im, unsigned int **col_usage, int maxc);
02d1d628 248
8d14daab 249i_img * i_transform(i_img *im, int *opx, int opxl, int *opy,int opyl,double parm[],int parmlen);
02d1d628
AMH
250
251struct rm_op;
8d14daab 252i_img * i_transform2(i_img_dim width, i_img_dim height, int channels,
04418ecc
AMH
253 struct rm_op *ops, int ops_count,
254 double *n_regs, int n_regs_count,
255 i_color *c_regs, int c_regs_count,
256 i_img **in_imgs, int in_imgs_count);
febba01f 257
02d1d628
AMH
258/* filters */
259
260void i_contrast(i_img *im, float intensity);
261void i_hardinvert(i_img *im);
5558f899 262void i_hardinvertall(i_img *im);
02d1d628 263void i_noise(i_img *im, float amount, unsigned char type);
8d14daab
TC
264void i_bumpmap(i_img *im,i_img *bump,int channel,i_img_dim light_x,i_img_dim light_y,i_img_dim strength);
265void i_bumpmap_complex(i_img *im, i_img *bump, int channel, i_img_dim tx, i_img_dim ty, double Lx, double Ly,
266 double Lz, float cd, float cs, float n, i_color *Ia, i_color *Il, i_color *Is);
02d1d628 267void i_postlevels(i_img *im,int levels);
8d14daab
TC
268void i_mosaic(i_img *im,i_img_dim size);
269void i_watermark(i_img *im,i_img *wmark,i_img_dim tx,i_img_dim ty,int pixdiff);
02d1d628 270void i_autolevels(i_img *im,float lsat,float usat,float skew);
ac00f58d 271void i_autolevels_mono(i_img *im,float lsat,float usat);
8d14daab
TC
272void i_radnoise(i_img *im,i_img_dim xo,i_img_dim yo,double rscale,double ascale);
273void i_turbnoise(i_img *im,double xo,double yo,double scale);
274void i_gradgen(i_img *im, int num, i_img_dim *xo, i_img_dim *yo, i_color *ival, int dmeasure);
275int i_nearest_color(i_img *im, int num, i_img_dim *xo, i_img_dim *yo, i_color *ival, int dmeasure);
01b84320 276i_img *i_diff_image(i_img *im, i_img *im2, double mindist);
e310e5f9
TC
277int
278i_fountain(i_img *im, double xa, double ya, double xb, double yb,
279 i_fountain_type type, i_fountain_repeat repeat,
280 int combine, int super_sample, double ssample_param,
281 int count, i_fountain_seg *segs);
f1ac5027
TC
282extern i_fill_t *
283i_new_fill_fount(double xa, double ya, double xb, double yb,
284 i_fountain_type type, i_fountain_repeat repeat,
285 int combine, int super_sample, double ssample_param,
286 int count, i_fountain_seg *segs);
02d1d628
AMH
287
288/* Debug only functions */
289
290void malloc_state( void );
291
af070d99 292#include "imerror.h"
02d1d628 293
faa9b3e7
TC
294/* image tag processing */
295extern void i_tags_new(i_img_tags *tags);
97c4effc
TC
296extern int i_tags_addn(i_img_tags *tags, char const *name, int code,
297 int idata);
298extern int i_tags_add(i_img_tags *tags, char const *name, int code,
299 char const *data, int size, int idata);
92bda632
TC
300extern int i_tags_set(i_img_tags *tags, char const *name,
301 char const *data, int size);
302extern int i_tags_setn(i_img_tags *tags, char const *name, int idata);
303
faa9b3e7 304extern void i_tags_destroy(i_img_tags *tags);
97c4effc
TC
305extern int i_tags_find(i_img_tags *tags, char const *name, int start,
306 int *entry);
faa9b3e7
TC
307extern int i_tags_findn(i_img_tags *tags, int code, int start, int *entry);
308extern int i_tags_delete(i_img_tags *tags, int entry);
97c4effc 309extern int i_tags_delbyname(i_img_tags *tags, char const *name);
faa9b3e7 310extern int i_tags_delbycode(i_img_tags *tags, int code);
97c4effc 311extern int i_tags_get_float(i_img_tags *tags, char const *name, int code,
fd9a31d2 312 double *value);
97c4effc 313extern int i_tags_set_float(i_img_tags *tags, char const *name, int code,
fd9a31d2 314 double value);
2e41e30b
TC
315extern int i_tags_set_float2(i_img_tags *tags, char const *name, int code,
316 double value, int places);
97c4effc
TC
317extern int i_tags_get_int(i_img_tags *tags, char const *name, int code,
318 int *value);
319extern int i_tags_get_string(i_img_tags *tags, char const *name, int code,
fd9a31d2 320 char *value, size_t value_size);
97c4effc
TC
321extern int i_tags_get_color(i_img_tags *tags, char const *name, int code,
322 i_color *value);
323extern int i_tags_set_color(i_img_tags *tags, char const *name, int code,
324 i_color const *value);
fd9a31d2 325extern void i_tags_print(i_img_tags *tags);
02d1d628 326
77157728
TC
327/* image file limits */
328extern int
44d86483 329im_set_image_file_limits(im_context_t ctx, i_img_dim width, i_img_dim height, size_t bytes);
77157728 330extern int
44d86483 331im_get_image_file_limits(im_context_t ctx, i_img_dim *width, i_img_dim *height, size_t *bytes);
2b405c9e 332extern int
44d86483 333im_int_check_image_file_limits(im_context_t ctx, i_img_dim width, i_img_dim height, int channels, size_t sample_size);
77157728 334
e310e5f9 335/* memory allocation */
8d14daab 336void* mymalloc(size_t size);
e310e5f9
TC
337void myfree(void *p);
338void* myrealloc(void *p, size_t newsize);
339void* mymalloc_file_line (size_t size, char* file, int line);
340void myfree_file_line (void *p, char*file, int line);
341void* myrealloc_file_line(void *p, size_t newsize, char* file,int line);
342
343#ifdef IMAGER_DEBUG_MALLOC
344
345#define mymalloc(x) (mymalloc_file_line((x), __FILE__, __LINE__))
346#define myrealloc(x,y) (myrealloc_file_line((x),(y), __FILE__, __LINE__))
347#define myfree(x) (myfree_file_line((x), __FILE__, __LINE__))
348
349void malloc_state (void);
e310e5f9
TC
350void bndcheck_all (void);
351
352#else
353
e310e5f9
TC
354void malloc_state(void);
355
356#endif /* IMAGER_MALLOC_DEBUG */
357
9c106321
TC
358#include "imrender.h"
359
9b1ec2b8
TC
360extern void
361i_adapt_colors(int dest_channels, int src_channels, i_color *colors,
362 size_t count);
363extern void
364i_adapt_fcolors(int dest_channels, int src_channels, i_fcolor *colors,
365 size_t count);
366
fa90de94
TC
367extern void
368i_adapt_colors_bg(int dest_channels, int src_channels, i_color *colors,
369 size_t count, i_color const *bg);
370extern void
371i_adapt_fcolors_bg(int dest_channels, int src_channels, i_fcolor *colors,
372 size_t count, i_fcolor const *bg);
373
2a31a4b4 374extern int
8d14daab 375i_gsamp_bg(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y, i_sample_t *samples,
2a31a4b4
TC
376 int out_channels, i_color const *bg);
377
378extern int
8d14daab 379i_gsampf_bg(i_img *im, i_img_dim l, i_img_dim r, i_img_dim y, i_fsample_t *samples,
2a31a4b4
TC
380 int out_channels, i_fcolor const *bg);
381
cf8c77ae
TC
382/* context object management */
383extern im_context_t im_context_new(void);
31a13473
TC
384extern void im_context_refinc(im_context_t ctx, const char *where);
385extern void im_context_refdec(im_context_t ctx, const char *where);
386extern im_context_t im_context_clone(im_context_t ctx, const char *where);
fc02e376
TC
387extern im_slot_t im_context_slot_new(im_slot_destroy_t);
388extern void *im_context_slot_get(im_context_t ctx, im_slot_t slot);
389extern int im_context_slot_set(im_context_t ctx, im_slot_t slot, void *);
cf8c77ae 390
74315ca9
TC
391extern im_context_t (*im_get_context)(void);
392
24c9233d
TC
393/* mutex API */
394extern i_mutex_t i_mutex_new(void);
395extern void i_mutex_destroy(i_mutex_t m);
396extern void i_mutex_lock(i_mutex_t m);
397extern void i_mutex_unlock(i_mutex_t m);
398
8d14daab
TC
399#include "imio.h"
400
02d1d628 401#endif