missed a PERL_NO_GET_CONTEXT
[imager.git] / fills.c
CommitLineData
92bda632
TC
1#include "imager.h"
2#include "imageri.h"
f1ac5027
TC
3
4/*
773bc121 5=head1 NAME
f1ac5027 6
773bc121 7fills.c - implements the basic general fills
f1ac5027 8
773bc121
TC
9=head1 SYNOPSIS
10
11 i_fill_t *fill;
12 i_color c1, c2;
13 i_fcolor fc1, fc2;
14 int combine;
15 fill = i_new_fill_solidf(&fc1, combine);
16 fill = i_new_fill_solid(&c1, combine);
17 fill = i_new_fill_hatchf(&fc1, &fc2, combine, hatch, cust_hash, dx, dy);
18 fill = i_new_fill_hatch(&c1, &c2, combine, hatch, cust_hash, dx, dy);
f576ce7e 19 fill = i_new_fill_image(im, matrix, xoff, yoff, combine);
52f2b10a 20 fill = i_new_fill_opacity(fill, alpha_mult);
773bc121
TC
21 i_fill_destroy(fill);
22
23=head1 DESCRIPTION
24
25Implements the basic general fills, which can be used for filling some
26shapes and for flood fills.
27
28Each fill can implement up to 3 functions:
29
30=over
31
32=item fill_with_color
33
34called for fills on 8-bit images. This can be NULL in which case the
35fill_with_colorf function is called.
36
37=item fill_with_fcolor
38
39called for fills on non-8-bit images or when fill_with_color is NULL.
40
41=item destroy
42
43called by i_fill_destroy() if non-NULL, to release any extra resources
44that the fill may need.
45
46=back
47
48fill_with_color and fill_with_fcolor are basically the same function
49except that the first works with lines of i_color and the second with
50lines of i_fcolor.
51
52If the combines member if non-zero the line data is populated from the
53target image before calling fill_with_*color.
54
55fill_with_color needs to fill the I<data> parameter with the fill
56pixels. If combines is non-zero it the fill pixels should be combined
57with the existing data.
58
59The current fills are:
60
61=over
62
63=item *
64
65solid fill
66
67=item *
68
69hatched fill
70
71=item *
72
73fountain fill
74
75=back
76
77Fountain fill is implemented by L<filters.c>.
78
efdc2568
TC
79Other fills that could be implemented include:
80
81=over
82
83=item *
84
85image - an image tiled over the fill area, with an offset either
86horizontally or vertically.
87
88=item *
89
90checkerboard - combine 2 fills in a checkerboard
91
92=item *
93
94combine - combine the levels of 2 other fills based in the levels of
95an image
96
97=item *
98
99regmach - use the register machine to generate colors
100
101=back
102
773bc121
TC
103=over
104
105=cut
f1ac5027
TC
106*/
107
97ac0a96 108static i_color fcolor_to_color(const i_fcolor *c) {
f1ac5027
TC
109 int ch;
110 i_color out;
111
112 for (ch = 0; ch < MAXCHANNELS; ++ch)
113 out.channel[ch] = SampleFTo8(c->channel[ch]);
976efad5
TC
114
115 return out;
f1ac5027
TC
116}
117
97ac0a96 118static i_fcolor color_to_fcolor(const i_color *c) {
f1ac5027 119 int ch;
976efad5 120 i_fcolor out;
f1ac5027
TC
121
122 for (ch = 0; ch < MAXCHANNELS; ++ch)
123 out.channel[ch] = Sample8ToF(c->channel[ch]);
976efad5
TC
124
125 return out;
f1ac5027
TC
126}
127
efdc2568 128/* alpha combine in with out */
f1ac5027
TC
129#define COMBINE(out, in, channels) \
130 { \
131 int ch; \
132 for (ch = 0; ch < (channels); ++ch) { \
133 (out).channel[ch] = ((out).channel[ch] * (255 - (in).channel[3]) \
134 + (in).channel[ch] * (in).channel[3]) / 255; \
135 } \
136 }
137
efdc2568
TC
138/* alpha combine in with out, in this case in is a simple array of
139 samples, potentially not integers - the mult combiner uses doubles
140 for accuracy */
141#define COMBINEA(out, in, channels) \
142 { \
143 int ch; \
144 for (ch = 0; ch < (channels); ++ch) { \
145 (out).channel[ch] = ((out).channel[ch] * (255 - (in)[3]) \
146 + (in)[ch] * (in)[3]) / 255; \
147 } \
148 }
149
f1ac5027
TC
150#define COMBINEF(out, in, channels) \
151 { \
152 int ch; \
153 for (ch = 0; ch < (channels); ++ch) { \
154 (out).channel[ch] = (out).channel[ch] * (1.0 - (in).channel[3]) \
155 + (in).channel[ch] * (in).channel[3]; \
156 } \
157 }
158
efdc2568
TC
159typedef struct
160{
161 i_fill_t base;
162 i_color c;
163 i_fcolor fc;
164} i_fill_solid_t;
165
f1ac5027 166static void fill_solid(i_fill_t *, int x, int y, int width, int channels,
43c5dacb 167 i_color *);
f1ac5027 168static void fill_solidf(i_fill_t *, int x, int y, int width, int channels,
43c5dacb 169 i_fcolor *);
f1ac5027
TC
170
171static i_fill_solid_t base_solid_fill =
172{
173 {
174 fill_solid,
175 fill_solidf,
176 NULL,
efdc2568
TC
177 NULL,
178 NULL,
f1ac5027
TC
179 },
180};
f1ac5027 181
773bc121
TC
182/*
183=item i_fill_destroy(fill)
6cfee9d1 184=order 90
92bda632 185=category Fills
9167a5c6 186=synopsis i_fill_destroy(fill);
92bda632 187
773bc121
TC
188Call to destroy any fill object.
189
190=cut
191*/
192
f1ac5027
TC
193void
194i_fill_destroy(i_fill_t *fill) {
195 if (fill->destroy)
196 (fill->destroy)(fill);
197 myfree(fill);
198}
199
773bc121
TC
200/*
201=item i_new_fill_solidf(color, combine)
202
92bda632 203=category Fills
9167a5c6 204=synopsis i_fill_t *fill = i_new_fill_solidf(&fcolor, combine);
92bda632 205
773bc121
TC
206Create a solid fill based on a float color.
207
208If combine is non-zero then alpha values will be combined.
209
210=cut
211*/
212
f1ac5027 213i_fill_t *
97ac0a96 214i_new_fill_solidf(const i_fcolor *c, int combine) {
f1ac5027 215 int ch;
f0960b14 216 i_fill_solid_t *fill = mymalloc(sizeof(i_fill_solid_t)); /* checked 14jul05 tonyc */
f1ac5027 217
9b1ec2b8 218 *fill = base_solid_fill;
141a6114 219 if (combine) {
efdc2568
TC
220 i_get_combine(combine, &fill->base.combine, &fill->base.combinef);
221 }
9b1ec2b8 222
f1ac5027
TC
223 fill->fc = *c;
224 for (ch = 0; ch < MAXCHANNELS; ++ch) {
225 fill->c.channel[ch] = SampleFTo8(c->channel[ch]);
226 }
227
228 return &fill->base;
229}
230
773bc121
TC
231/*
232=item i_new_fill_solid(color, combine)
233
92bda632 234=category Fills
9167a5c6 235=synopsis i_fill_t *fill = i_new_fill_solid(&color, combine);
92bda632
TC
236
237Create a solid fill based on an 8-bit color.
773bc121
TC
238
239If combine is non-zero then alpha values will be combined.
240
241=cut
242*/
243
f1ac5027 244i_fill_t *
97ac0a96 245i_new_fill_solid(const i_color *c, int combine) {
f1ac5027 246 int ch;
f0960b14 247 i_fill_solid_t *fill = mymalloc(sizeof(i_fill_solid_t)); /* checked 14jul05 tonyc */
f1ac5027 248
9b1ec2b8 249 *fill = base_solid_fill;
141a6114 250 if (combine) {
efdc2568
TC
251 i_get_combine(combine, &fill->base.combine, &fill->base.combinef);
252 }
9b1ec2b8 253
f1ac5027
TC
254 fill->c = *c;
255 for (ch = 0; ch < MAXCHANNELS; ++ch) {
256 fill->fc.channel[ch] = Sample8ToF(c->channel[ch]);
257 }
258
259 return &fill->base;
260}
261
f1ac5027
TC
262static unsigned char
263builtin_hatches[][8] =
264{
265 {
266 /* 1x1 checkerboard */
267 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55,
268 },
269 {
270 /* 2x2 checkerboard */
271 0xCC, 0xCC, 0x33, 0x33, 0xCC, 0xCC, 0x33, 0x33,
272 },
273 {
274 /* 4 x 4 checkerboard */
275 0xF0, 0xF0, 0xF0, 0xF0, 0x0F, 0x0F, 0x0F, 0x0F,
276 },
277 {
278 /* single vertical lines */
279 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
280 },
281 {
282 /* double vertical lines */
283 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
284 },
285 {
286 /* quad vertical lines */
287 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55,
288 },
289 {
290 /* single hlines */
291 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
292 },
293 {
294 /* double hlines */
295 0xFF, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
296 },
297 {
298 /* quad hlines */
299 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00,
300 },
301 {
302 /* single / */
303 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
304 },
305 {
306 /* single \ */
307 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01,
308 },
309 {
310 /* double / */
311 0x11, 0x22, 0x44, 0x88, 0x11, 0x22, 0x44, 0x88,
312 },
313 {
314 /* double \ */
315 0x88, 0x44, 0x22, 0x11, 0x88, 0x44, 0x22, 0x11,
316 },
317 {
318 /* single grid */
319 0xFF, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,
320 },
321 {
322 /* double grid */
323 0xFF, 0x88, 0x88, 0x88, 0xFF, 0x88, 0x88, 0x88,
324 },
325 {
326 /* quad grid */
327 0xFF, 0xAA, 0xFF, 0xAA, 0xFF, 0xAA, 0xFF, 0xAA,
328 },
329 {
330 /* single dots */
331 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
332 },
333 {
334 /* 4 dots */
335 0x88, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00,
336 },
337 {
338 /* 16 dots */
339 0xAA, 0x00, 0xAA, 0x00, 0xAA, 0x00, 0xAA, 0x00,
340 },
341 {
342 /* simple stipple */
343 0x48, 0x84, 0x00, 0x00, 0x84, 0x48, 0x00, 0x00,
344 },
345 {
346 /* weave */
347 0x55, 0xFD, 0x05, 0xFD, 0x55, 0xDF, 0x50, 0xDF,
348 },
349 {
350 /* single cross hatch */
351 0x82, 0x44, 0x28, 0x10, 0x28, 0x44, 0x82, 0x01,
352 },
353 {
354 /* double cross hatch */
355 0xAA, 0x44, 0xAA, 0x11, 0xAA, 0x44, 0xAA, 0x11,
356 },
357 {
358 /* vertical lozenge */
359 0x11, 0x11, 0x11, 0xAA, 0x44, 0x44, 0x44, 0xAA,
360 },
361 {
362 /* horizontal lozenge */
363 0x88, 0x70, 0x88, 0x07, 0x88, 0x70, 0x88, 0x07,
364 },
365 {
366 /* scales overlapping downwards */
7a606d29 367 0x80, 0x80, 0x41, 0x3E, 0x08, 0x08, 0x14, 0xE3,
f1ac5027
TC
368 },
369 {
370 /* scales overlapping upwards */
7a606d29 371 0xC7, 0x28, 0x10, 0x10, 0x7C, 0x82, 0x01, 0x01,
f1ac5027
TC
372 },
373 {
374 /* scales overlapping leftwards */
7a606d29 375 0x83, 0x84, 0x88, 0x48, 0x38, 0x48, 0x88, 0x84,
f1ac5027
TC
376 },
377 {
378 /* scales overlapping rightwards */
7a606d29 379 0x21, 0x11, 0x12, 0x1C, 0x12, 0x11, 0x21, 0xC1,
f1ac5027
TC
380 },
381 {
382 /* denser stipple */
383 0x44, 0x88, 0x22, 0x11, 0x44, 0x88, 0x22, 0x11,
384 },
385 {
386 /* L-shaped tiles */
387 0xFF, 0x84, 0x84, 0x9C, 0x94, 0x9C, 0x90, 0x90,
388 },
cc6483e0
TC
389 {
390 /* wider stipple */
391 0x80, 0x40, 0x20, 0x00, 0x02, 0x04, 0x08, 0x00,
392 },
f1ac5027
TC
393};
394
395typedef struct
396{
397 i_fill_t base;
398 i_color fg, bg;
399 i_fcolor ffg, fbg;
400 unsigned char hatch[8];
401 int dx, dy;
402} i_fill_hatch_t;
403
404static void fill_hatch(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 405 i_color *data);
f1ac5027 406static void fill_hatchf(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 407 i_fcolor *data);
773bc121
TC
408static
409i_fill_t *
97ac0a96
TC
410i_new_hatch_low(const i_color *fg, const i_color *bg, const i_fcolor *ffg, const i_fcolor *fbg,
411 int combine, int hatch, const unsigned char *cust_hatch,
773bc121
TC
412 int dx, int dy);
413
414/*
5715f7c3 415=item i_new_fill_hatch(C<fg>, C<bg>, C<combine>, C<hatch>, C<cust_hatch>, C<dx>, C<dy>)
773bc121 416
92bda632 417=category Fills
9167a5c6 418=synopsis i_fill_t *fill = i_new_fill_hatch(&fg_color, &bg_color, combine, hatch, custom_hatch, dx, dy);
92bda632 419
5715f7c3
TC
420Creates a new hatched fill with the C<fg> color used for the 1 bits in
421the hatch and C<bg> for the 0 bits. If C<combine> is non-zero alpha
422values will be combined.
f1ac5027 423
5715f7c3 424If C<cust_hatch> is non-NULL it should be a pointer to 8 bytes of the
773bc121
TC
425hash definition, with the high-bits to the left.
426
5715f7c3 427If C<cust_hatch> is NULL then one of the standard hatches is used.
773bc121 428
5715f7c3
TC
429(C<dx>, C<dy>) are an offset into the hatch which can be used to hatch
430adjoining areas out of alignment, or to align the origin of a hatch
431with the the side of a filled area.
773bc121
TC
432
433=cut
434*/
435i_fill_t *
97ac0a96
TC
436i_new_fill_hatch(const i_color *fg, const i_color *bg, int combine, int hatch,
437 const unsigned char *cust_hatch, int dx, int dy) {
773bc121
TC
438 return i_new_hatch_low(fg, bg, NULL, NULL, combine, hatch, cust_hatch,
439 dx, dy);
440}
441
442/*
5715f7c3 443=item i_new_fill_hatchf(C<fg>, C<bg>, C<combine>, C<hatch>, C<cust_hatch>, C<dx>, C<dy>)
773bc121 444
92bda632 445=category Fills
9167a5c6 446=synopsis i_fill_t *fill = i_new_fill_hatchf(&fg_fcolor, &bg_fcolor, combine, hatch, custom_hatch, dx, dy);
92bda632 447
5715f7c3
TC
448Creates a new hatched fill with the C<fg> color used for the 1 bits in
449the hatch and C<bg> for the 0 bits. If C<combine> is non-zero alpha
450values will be combined.
773bc121 451
5715f7c3 452If C<cust_hatch> is non-NULL it should be a pointer to 8 bytes of the
773bc121
TC
453hash definition, with the high-bits to the left.
454
5715f7c3 455If C<cust_hatch> is NULL then one of the standard hatches is used.
773bc121 456
5715f7c3
TC
457(C<dx>, C<dy>) are an offset into the hatch which can be used to hatch
458adjoining areas out of alignment, or to align the origin of a hatch
459with the the side of a filled area.
773bc121
TC
460
461=cut
462*/
463i_fill_t *
97ac0a96
TC
464i_new_fill_hatchf(const i_fcolor *fg, const i_fcolor *bg, int combine, int hatch,
465 const unsigned char *cust_hatch, int dx, int dy) {
773bc121
TC
466 return i_new_hatch_low(NULL, NULL, fg, bg, combine, hatch, cust_hatch,
467 dx, dy);
468}
469
f576ce7e 470static void fill_image(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 471 i_color *data);
f576ce7e 472static void fill_imagef(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 473 i_fcolor *data);
f576ce7e
TC
474struct i_fill_image_t {
475 i_fill_t base;
476 i_img *src;
477 int xoff, yoff;
478 int has_matrix;
479 double matrix[9];
480};
481
9b1ec2b8
TC
482static struct i_fill_image_t
483image_fill_proto =
484 {
485 {
486 fill_image,
487 fill_imagef,
488 NULL
489 }
490 };
491
f576ce7e 492/*
5715f7c3 493=item i_new_fill_image(C<im>, C<matrix>, C<xoff>, C<yoff>, C<combine>)
f576ce7e 494
92bda632 495=category Fills
9167a5c6 496=synopsis i_fill_t *fill = i_new_fill_image(src_img, matrix, x_offset, y_offset, combine);
92bda632 497
f576ce7e
TC
498Create an image based fill.
499
92bda632
TC
500matrix is an array of 9 doubles representing a transformation matrix.
501
5715f7c3 502C<xoff> and C<yoff> are the offset into the image to start filling from.
92bda632 503
f576ce7e
TC
504=cut
505*/
506i_fill_t *
97ac0a96 507i_new_fill_image(i_img *im, const double *matrix, int xoff, int yoff, int combine) {
f0960b14 508 struct i_fill_image_t *fill = mymalloc(sizeof(*fill)); /* checked 14jul05 tonyc */
f576ce7e 509
9b1ec2b8 510 *fill = image_fill_proto;
f576ce7e
TC
511
512 if (combine) {
513 i_get_combine(combine, &fill->base.combine, &fill->base.combinef);
514 }
515 else {
516 fill->base.combine = NULL;
517 fill->base.combinef = NULL;
518 }
519 fill->src = im;
520 if (xoff < 0)
521 xoff += im->xsize;
522 fill->xoff = xoff;
523 if (yoff < 0)
524 yoff += im->ysize;
525 fill->yoff = yoff;
526 if (matrix) {
527 fill->has_matrix = 1;
528 memcpy(fill->matrix, matrix, sizeof(fill->matrix));
529 }
530 else
531 fill->has_matrix = 0;
532
533 return &fill->base;
534}
535
52f2b10a
TC
536static void fill_opacity(i_fill_t *fill, int x, int y, int width, int channels,
537 i_color *data);
538static void fill_opacityf(i_fill_t *fill, int x, int y, int width, int channels,
539 i_fcolor *data);
540
541struct i_fill_opacity_t {
542 i_fill_t base;
543 i_fill_t *other_fill;
544 double alpha_mult;
545};
546
547static struct i_fill_opacity_t
548opacity_fill_proto =
549 {
550 fill_opacity,
551 fill_opacityf,
552 NULL
553 };
554
555i_fill_t *
556i_new_fill_opacity(i_fill_t *base_fill, double alpha_mult) {
557 struct i_fill_opacity_t *fill = mymalloc(sizeof(*fill));
558 *fill = opacity_fill_proto;
559
560 fill->base.combine = base_fill->combine;
561 fill->base.combinef = base_fill->combinef;
562
563 fill->other_fill = base_fill;
564 fill->alpha_mult = alpha_mult;
565
566 return &fill->base;
567}
f576ce7e 568
773bc121
TC
569#define T_SOLID_FILL(fill) ((i_fill_solid_t *)(fill))
570
571/*
572=back
573
574=head1 INTERNAL FUNCTIONS
575
576=over
577
578=item fill_solid(fill, x, y, width, channels, data)
579
580The 8-bit sample fill function for non-combining solid fills.
581
582=cut
583*/
584static void
585fill_solid(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 586 i_color *data) {
9b1ec2b8
TC
587 i_color c = T_SOLID_FILL(fill)->c;
588 i_adapt_colors(channels > 2 ? 4 : 2, 4, &c, 1);
773bc121 589 while (width-- > 0) {
9b1ec2b8 590 *data++ = c;
773bc121
TC
591 }
592}
593
594/*
595=item fill_solid(fill, x, y, width, channels, data)
596
597The floating sample fill function for non-combining solid fills.
598
599=cut
600*/
601static void
602fill_solidf(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 603 i_fcolor *data) {
773bc121 604 i_fcolor c = T_SOLID_FILL(fill)->fc;
9b1ec2b8 605 i_adapt_fcolors(channels > 2 ? 4 : 2, 4, &c, 1);
773bc121 606 while (width-- > 0) {
43c5dacb 607 *data++ = c;
773bc121
TC
608 }
609}
610
9b1ec2b8
TC
611static i_fill_hatch_t
612hatch_fill_proto =
613 {
614 {
615 fill_hatch,
616 fill_hatchf,
617 NULL
618 }
619 };
620
773bc121
TC
621/*
622=item i_new_hatch_low(fg, bg, ffg, fbg, combine, hatch, cust_hatch, dx, dy)
623
624Implements creation of hatch fill objects.
625
626=cut
627*/
f1ac5027
TC
628static
629i_fill_t *
97ac0a96
TC
630i_new_hatch_low(const i_color *fg, const i_color *bg,
631 const i_fcolor *ffg, const i_fcolor *fbg,
632 int combine, int hatch, const unsigned char *cust_hatch,
f1ac5027 633 int dx, int dy) {
f0960b14 634 i_fill_hatch_t *fill = mymalloc(sizeof(i_fill_hatch_t)); /* checked 14jul05 tonyc */
f1ac5027 635
9b1ec2b8 636 *fill = hatch_fill_proto;
05462f4b
TC
637 /* Some Sun C didn't like the condition expressions that were here.
638 See https://rt.cpan.org/Ticket/Display.html?id=21944
639 */
640 if (fg)
641 fill->fg = *fg;
642 else
643 fill->fg = fcolor_to_color(ffg);
644 if (bg)
645 fill->bg = *bg;
646 else
647 fill->bg = fcolor_to_color(fbg);
648 if (ffg)
649 fill->ffg = *ffg;
650 else
651 fill->ffg = color_to_fcolor(fg);
652 if (fbg)
653 fill->fbg = *fbg;
654 else
655 fill->fbg = color_to_fcolor(bg);
141a6114 656 if (combine) {
efdc2568
TC
657 i_get_combine(combine, &fill->base.combine, &fill->base.combinef);
658 }
659 else {
660 fill->base.combine = NULL;
661 fill->base.combinef = NULL;
662 }
f1ac5027
TC
663 if (cust_hatch) {
664 memcpy(fill->hatch, cust_hatch, 8);
665 }
666 else {
667 if (hatch > sizeof(builtin_hatches)/sizeof(*builtin_hatches))
668 hatch = 0;
669 memcpy(fill->hatch, builtin_hatches[hatch], 8);
670 }
671 fill->dx = dx & 7;
672 fill->dy = dy & 7;
673
674 return &fill->base;
675}
676
773bc121
TC
677/*
678=item fill_hatch(fill, x, y, width, channels, data)
f1ac5027 679
773bc121 680The 8-bit sample fill function for hatched fills.
f1ac5027 681
b8c2033e 682=cut
773bc121 683*/
f1ac5027 684static void fill_hatch(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 685 i_color *data) {
f1ac5027
TC
686 i_fill_hatch_t *f = (i_fill_hatch_t *)fill;
687 int byte = f->hatch[(y + f->dy) & 7];
688 int xpos = (x + f->dx) & 7;
689 int mask = 128 >> xpos;
04f85f63
TC
690 i_color fg = f->fg;
691 i_color bg = f->bg;
692 int want_channels = channels > 2 ? 4 : 2;
693
694 if (channels < 3) {
695 i_adapt_colors(2, 4, &fg, 1);
696 i_adapt_colors(2, 4, &bg, 1);
697 }
f1ac5027 698
43c5dacb 699 while (width-- > 0) {
052acec4 700 if (byte & mask)
04f85f63 701 *data++ = fg;
052acec4 702 else
04f85f63 703 *data++ = bg;
43c5dacb
TC
704
705 if ((mask >>= 1) == 0)
706 mask = 128;
f1ac5027
TC
707 }
708}
709
773bc121
TC
710/*
711=item fill_hatchf(fill, x, y, width, channels, data)
712
713The floating sample fill function for hatched fills.
714
715=back
716*/
f1ac5027 717static void fill_hatchf(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 718 i_fcolor *data) {
f1ac5027
TC
719 i_fill_hatch_t *f = (i_fill_hatch_t *)fill;
720 int byte = f->hatch[(y + f->dy) & 7];
721 int xpos = (x + f->dx) & 7;
722 int mask = 128 >> xpos;
04f85f63
TC
723 i_fcolor fg = f->ffg;
724 i_fcolor bg = f->fbg;
725
726 if (channels < 3) {
727 i_adapt_fcolors(2, 4, &fg, 1);
728 i_adapt_fcolors(2, 4, &bg, 1);
729 }
f1ac5027 730
43c5dacb 731 while (width-- > 0) {
052acec4 732 if (byte & mask)
04f85f63 733 *data++ = fg;
052acec4 734 else
04f85f63 735 *data++ = bg;
43c5dacb
TC
736
737 if ((mask >>= 1) == 0)
738 mask = 128;
efdc2568
TC
739 }
740}
741
f576ce7e
TC
742/* hopefully this will be inlined (it is with -O3 with gcc 2.95.4) */
743/* linear interpolation */
744static i_color interp_i_color(i_color before, i_color after, double pos,
745 int channels) {
746 i_color out;
747 int ch;
748
749 pos -= floor(pos);
750 for (ch = 0; ch < channels; ++ch)
751 out.channel[ch] = (1-pos) * before.channel[ch] + pos * after.channel[ch];
3efb0915 752 if (channels > 3 && out.channel[3])
f576ce7e
TC
753 for (ch = 0; ch < channels; ++ch)
754 if (ch != 3) {
755 int temp = out.channel[ch] * 255 / out.channel[3];
756 if (temp > 255)
757 temp = 255;
758 out.channel[ch] = temp;
759 }
760
761 return out;
762}
763
764/* hopefully this will be inlined (it is with -O3 with gcc 2.95.4) */
765/* linear interpolation */
766static i_fcolor interp_i_fcolor(i_fcolor before, i_fcolor after, double pos,
767 int channels) {
768 i_fcolor out;
769 int ch;
770
771 pos -= floor(pos);
772 for (ch = 0; ch < channels; ++ch)
773 out.channel[ch] = (1-pos) * before.channel[ch] + pos * after.channel[ch];
774 if (out.channel[3])
775 for (ch = 0; ch < channels; ++ch)
776 if (ch != 3) {
777 int temp = out.channel[ch] / out.channel[3];
778 if (temp > 1.0)
779 temp = 1.0;
780 out.channel[ch] = temp;
781 }
782
783 return out;
784}
785
786/*
787=item fill_image(fill, x, y, width, channels, data, work)
788
789=cut
790*/
791static void fill_image(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 792 i_color *data) {
f576ce7e 793 struct i_fill_image_t *f = (struct i_fill_image_t *)fill;
f576ce7e 794 int i = 0;
cde2dbc7 795 i_color *out = data;
a256aec5 796 int want_channels = channels > 2 ? 4 : 2;
f576ce7e
TC
797
798 if (f->has_matrix) {
799 /* the hard way */
800 while (i < width) {
801 double rx = f->matrix[0] * (x+i) + f->matrix[1] * y + f->matrix[2];
802 double ry = f->matrix[3] * (x+i) + f->matrix[4] * y + f->matrix[5];
803 double ix = floor(rx / f->src->xsize);
804 double iy = floor(ry / f->src->ysize);
805 i_color c[2][2];
806 i_color c2[2];
807 int dy;
808
809 if (f->xoff) {
810 rx += iy * f->xoff;
811 ix = floor(rx / f->src->xsize);
812 }
813 else if (f->yoff) {
814 ry += ix * f->yoff;
815 iy = floor(ry / f->src->ysize);
816 }
817 rx -= ix * f->src->xsize;
818 ry -= iy * f->src->ysize;
819
820 for (dy = 0; dy < 2; ++dy) {
821 if ((int)rx == f->src->xsize-1) {
822 i_gpix(f->src, f->src->xsize-1, ((int)ry+dy) % f->src->ysize, &c[dy][0]);
823 i_gpix(f->src, 0, ((int)ry+dy) % f->src->xsize, &c[dy][1]);
824 }
825 else {
826 i_glin(f->src, (int)rx, (int)rx+2, ((int)ry+dy) % f->src->ysize,
827 c[dy]);
828 }
829 c2[dy] = interp_i_color(c[dy][0], c[dy][1], rx, f->src->channels);
830 }
cde2dbc7 831 *out++ = interp_i_color(c2[0], c2[1], ry, f->src->channels);
f576ce7e
TC
832 ++i;
833 }
834 }
835 else {
836 /* the easy way */
837 /* this should be possible to optimize to use i_glin() */
838 while (i < width) {
839 int rx = x+i;
840 int ry = y;
841 int ix = rx / f->src->xsize;
842 int iy = ry / f->src->ysize;
843
844 if (f->xoff) {
845 rx += iy * f->xoff;
846 ix = rx / f->src->xsize;
847 }
848 else if (f->yoff) {
849 ry += ix * f->yoff;
850 iy = ry / f->src->xsize;
851 }
852 rx -= ix * f->src->xsize;
853 ry -= iy * f->src->ysize;
cde2dbc7
TC
854 i_gpix(f->src, rx, ry, out);
855 ++out;
f576ce7e
TC
856 ++i;
857 }
858 }
a256aec5
TC
859 if (f->src->channels != want_channels)
860 i_adapt_colors(want_channels, f->src->channels, data, width);
f576ce7e
TC
861}
862
863/*
a256aec5 864=item fill_imagef(fill, x, y, width, channels, data, work)
f576ce7e
TC
865
866=cut
867*/
868static void fill_imagef(i_fill_t *fill, int x, int y, int width, int channels,
43c5dacb 869 i_fcolor *data) {
f576ce7e 870 struct i_fill_image_t *f = (struct i_fill_image_t *)fill;
f576ce7e 871 int i = 0;
a256aec5 872 int want_channels = channels > 2 ? 4 : 2;
f576ce7e
TC
873
874 if (f->has_matrix) {
a256aec5 875 i_fcolor *work_data = data;
f576ce7e
TC
876 /* the hard way */
877 while (i < width) {
878 double rx = f->matrix[0] * (x+i) + f->matrix[1] * y + f->matrix[2];
879 double ry = f->matrix[3] * (x+i) + f->matrix[4] * y + f->matrix[5];
880 double ix = floor(rx / f->src->xsize);
881 double iy = floor(ry / f->src->ysize);
882 i_fcolor c[2][2];
883 i_fcolor c2[2];
884 int dy;
885
886 if (f->xoff) {
887 rx += iy * f->xoff;
888 ix = floor(rx / f->src->xsize);
889 }
890 else if (f->yoff) {
891 ry += ix * f->yoff;
892 iy = floor(ry / f->src->ysize);
893 }
894 rx -= ix * f->src->xsize;
895 ry -= iy * f->src->ysize;
896
897 for (dy = 0; dy < 2; ++dy) {
898 if ((int)rx == f->src->xsize-1) {
899 i_gpixf(f->src, f->src->xsize-1, ((int)ry+dy) % f->src->ysize, &c[dy][0]);
900 i_gpixf(f->src, 0, ((int)ry+dy) % f->src->xsize, &c[dy][1]);
901 }
902 else {
903 i_glinf(f->src, (int)rx, (int)rx+2, ((int)ry+dy) % f->src->ysize,
904 c[dy]);
905 }
906 c2[dy] = interp_i_fcolor(c[dy][0], c[dy][1], rx, f->src->channels);
907 }
a256aec5 908 *work_data++ = interp_i_fcolor(c2[0], c2[1], ry, f->src->channels);
f576ce7e
TC
909 ++i;
910 }
911 }
912 else {
a256aec5 913 i_fcolor *work_data = data;
f576ce7e
TC
914 /* the easy way */
915 /* this should be possible to optimize to use i_glin() */
916 while (i < width) {
917 int rx = x+i;
918 int ry = y;
919 int ix = rx / f->src->xsize;
920 int iy = ry / f->src->ysize;
921
922 if (f->xoff) {
923 rx += iy * f->xoff;
924 ix = rx / f->src->xsize;
925 }
926 else if (f->yoff) {
927 ry += ix * f->yoff;
928 iy = ry / f->src->xsize;
929 }
930 rx -= ix * f->src->xsize;
931 ry -= iy * f->src->ysize;
a256aec5
TC
932 i_gpixf(f->src, rx, ry, work_data);
933 ++work_data;
f576ce7e
TC
934 ++i;
935 }
936 }
a256aec5
TC
937 if (f->src->channels != want_channels)
938 i_adapt_fcolors(want_channels, f->src->channels, data, width);
f576ce7e
TC
939}
940
52f2b10a
TC
941static void
942fill_opacity(i_fill_t *fill, int x, int y, int width, int channels,
943 i_color *data) {
944 struct i_fill_opacity_t *f = (struct i_fill_opacity_t *)fill;
e958b64e 945 int alpha_chan = channels > 2 ? 3 : 1;
52f2b10a
TC
946 i_color *datap = data;
947
948 (f->other_fill->f_fill_with_color)(f->other_fill, x, y, width, channels, data);
949 while (width--) {
950 double new_alpha = datap->channel[alpha_chan] * f->alpha_mult;
951 if (new_alpha < 0)
952 datap->channel[alpha_chan] = 0;
953 else if (new_alpha > 255)
954 datap->channel[alpha_chan] = 255;
955 else datap->channel[alpha_chan] = (int)(new_alpha + 0.5);
956
957 ++datap;
958 }
959}
960static void
961fill_opacityf(i_fill_t *fill, int x, int y, int width, int channels,
962 i_fcolor *data) {
d0eb6658 963 struct i_fill_opacity_t *f = (struct i_fill_opacity_t *)fill;
e958b64e 964 int alpha_chan = channels > 2 ? 3 : 1;
52f2b10a
TC
965 i_fcolor *datap = data;
966
967 (f->other_fill->f_fill_with_fcolor)(f->other_fill, x, y, width, channels, data);
968
969 while (width--) {
970 double new_alpha = datap->channel[alpha_chan] * f->alpha_mult;
971 if (new_alpha < 0)
972 datap->channel[alpha_chan] = 0;
973 else if (new_alpha > 1.0)
974 datap->channel[alpha_chan] = 1.0;
975 else datap->channel[alpha_chan] = new_alpha;
976
977 ++datap;
978 }
979}
efdc2568 980
773bc121
TC
981/*
982=back
983
984=head1 AUTHOR
985
986Tony Cook <tony@develop-help.com>
987
988=head1 SEE ALSO
989
990Imager(3)
991
992=cut
993*/