1 /* Libart_LGPL - library of basic graphic primitives
2 * Copyright (C) 1998 Raph Levien
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 #include "art_rgb_rgba_affine.h"
25 #include "art_point.h"
26 #include "art_affine.h"
27 #include "art_rgb_affine_private.h"
29 /* This module handles compositing of affine-transformed rgba images
30 over rgb pixel buffers. */
32 /* Composite the source image over the destination image, applying the
36 * art_rgb_rgba_affine: Affine transform source RGBA image and composite.
37 * @dst: Destination image RGB buffer.
38 * @x0: Left coordinate of destination rectangle.
39 * @y0: Top coordinate of destination rectangle.
40 * @x1: Right coordinate of destination rectangle.
41 * @y1: Bottom coordinate of destination rectangle.
42 * @dst_rowstride: Rowstride of @dst buffer.
43 * @src: Source image RGBA buffer.
44 * @src_width: Width of source image.
45 * @src_height: Height of source image.
46 * @src_rowstride: Rowstride of @src buffer.
47 * @affine: Affine transform.
48 * @level: Filter level.
49 * @alphagamma: #ArtAlphaGamma for gamma-correcting the compositing.
51 * Affine transform the source image stored in @src, compositing over
52 * the area of destination image @dst specified by the rectangle
53 * (@x0, @y0) - (@x1, @y1). As usual in libart, the left and top edges
54 * of this rectangle are included, and the right and bottom edges are
57 * The @alphagamma parameter specifies that the alpha compositing be
58 * done in a gamma-corrected color space. In the current
59 * implementation, it is ignored.
61 * The @level parameter specifies the speed/quality tradeoff of the
62 * image interpolation. Currently, only ART_FILTER_NEAREST is
66 art_rgb_rgba_affine (art_u8 *dst,
67 int x0, int y0, int x1, int y1, int dst_rowstride,
69 int src_width, int src_height, int src_rowstride,
70 const double affine[6],
72 ArtAlphaGamma *alphagamma)
74 /* Note: this is a slow implementation, and is missing all filter
75 levels other than NEAREST. It is here for clarity of presentation
76 and to establish the interface. */
79 art_u8 *dst_p, *dst_linestart;
84 art_u8 bg_r, bg_g, bg_b;
85 art_u8 fg_r, fg_g, fg_b;
90 art_affine_invert (inv, affine);
91 for (y = y0; y < y1; y++)
96 art_rgb_affine_run (&run_x0, &run_x1, y, src_width, src_height,
98 dst_p = dst_linestart + (run_x0 - x0) * 3;
99 for (x = run_x0; x < run_x1; x++)
102 art_affine_point (&src_pt, &pt, inv);
103 src_x = floor (src_pt.x);
104 src_y = floor (src_pt.y);
105 src_p = src + (src_y * src_rowstride) + src_x * 4;
106 if (src_x >= 0 && src_x < src_width &&
107 src_y >= 0 && src_y < src_height)
125 tmp = (src_p[0] - bg_r) * alpha;
126 fg_r = bg_r + ((tmp + (tmp >> 8) + 0x80) >> 8);
127 tmp = (src_p[1] - bg_g) * alpha;
128 fg_g = bg_g + ((tmp + (tmp >> 8) + 0x80) >> 8);
129 tmp = (src_p[2] - bg_b) * alpha;
130 fg_b = bg_b + ((tmp + (tmp >> 8) + 0x80) >> 8);
137 } else { dst_p[0] = 255; dst_p[1] = 0; dst_p[2] = 0; }
140 dst_linestart += dst_rowstride;