1 /* raster.c - main and other misc stuff
3 * Raster graphics library
5 * Copyright (c) 1997-2000 Alfredo K. Kojima
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the Free
19 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 char *WRasterLibVersion
="0.9";
35 int RErrorCode
=RERR_NONE
;
38 #define HAS_ALPHA(I) ((I)->format == RRGBAFormat)
42 RCreateImage(unsigned width
, unsigned height
, int alpha
)
46 assert(width
>0 && height
>0);
48 image
= malloc(sizeof(RImage
));
50 RErrorCode
= RERR_NOMEMORY
;
54 memset(image
, 0, sizeof(RImage
));
56 image
->height
= height
;
58 image
->format
= RRGBAFormat
;
60 image
->format
= RRGBFormat
;
62 /* the +4 is to give extra bytes at the end of the buffer,
63 * so that we can optimize image conversion for MMX(tm).. see convert.c
65 image
->data
= malloc(width
* height
* (alpha
? 4 : 3) + 4);
67 RErrorCode
= RERR_NOMEMORY
;
78 RCloneImage(RImage
*image
)
84 new_image
= RCreateImage(image
->width
, image
->height
, HAS_ALPHA(image
));
88 new_image
->background
= image
->background
;
89 memcpy(new_image
->data
, image
->data
,
90 image
->width
*image
->height
*(HAS_ALPHA(image
) ? 4 : 3));
97 RGetSubImage(RImage
*image
, int x
, int y
, unsigned width
, unsigned height
)
101 unsigned total_line_size
, line_size
;
104 assert(x
>=0 && y
>=0);
105 assert(x
<image
->width
&& y
<image
->height
);
106 assert(width
>0 && height
>0);
108 if (x
+width
> image
->width
)
109 width
= image
->width
-x
;
110 if (y
+height
> image
->height
)
111 height
= image
->height
-y
;
113 new_image
= RCreateImage(width
, height
, HAS_ALPHA(image
));
117 new_image
->background
= image
->background
;
119 total_line_size
= image
->width
* (HAS_ALPHA(image
) ? 4 : 3);
120 line_size
= width
* (HAS_ALPHA(image
) ? 4 : 3);
122 ofs
= x
*(HAS_ALPHA(image
) ? 4 : 3) + y
*total_line_size
;;
124 for (i
=0; i
<height
; i
++) {
125 memcpy(&new_image
->data
[i
*line_size
],
126 &image
->data
[i
*total_line_size
+ofs
], line_size
);
133 RDestroyImage(RImage
*image
)
143 *----------------------------------------------------------------------
145 * Combines two equal sized images with alpha image. The second
146 * image will be placed on top of the first one.
147 *----------------------------------------------------------------------
150 RCombineImages(RImage
*image
, RImage
*src
)
152 assert(image
->width
== src
->width
);
153 assert(image
->height
== src
->height
);
155 if (!HAS_ALPHA(src
)) {
156 if (!HAS_ALPHA(image
)) {
157 memcpy(image
->data
, src
->data
, image
->height
*image
->width
*3);
160 unsigned char *d
, *s
;
164 for (y
= 0; y
< image
->height
; y
++) {
165 for (x
= 0; x
< image
->width
; x
++) {
182 if (!HAS_ALPHA(image
)) {
183 for (i
=0; i
<image
->height
*image
->width
; i
++) {
185 calpha
= 255 - alpha
;
186 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
188 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
190 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
195 for (i
=0; i
<image
->height
*image
->width
; i
++) {
197 calpha
= 255 - alpha
;
198 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
200 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
202 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
214 RCombineImagesWithOpaqueness(RImage
*image
, RImage
*src
, int opaqueness
)
221 assert(image
->width
== src
->width
);
222 assert(image
->height
== src
->height
);
227 c_opaqueness
= 255 - opaqueness
;
228 #define OP opaqueness
229 if (!HAS_ALPHA(src
)) {
230 int dalpha
= HAS_ALPHA(image
);
231 #define COP c_opaqueness
232 for (i
=0; i
< image
->width
*image
->height
; i
++) {
233 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
235 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
237 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
247 if (!HAS_ALPHA(image
)) {
248 for (i
=0; i
<image
->width
*image
->height
; i
++) {
249 tmp
= (*(s
+3) * opaqueness
)/256;
250 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
252 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
254 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
259 for (i
=0; i
<image
->width
*image
->height
; i
++) {
260 tmp
= (*(s
+3) * opaqueness
)/256;
261 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
263 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
265 *d
= (((int)*d
* (255-tmp
)) + ((int)*s
* tmp
))/256;
276 calculateCombineArea(RImage
*des
, RImage
*src
,
278 int *swidth
, int *sheight
,
283 *swidth
= *swidth
+ *dx
;
287 if (*dx
+ *swidth
> des
->width
) {
288 *swidth
= des
->width
- *dx
;
293 *sheight
= *sheight
+ *dy
;
297 if (*dy
+ *sheight
> des
->height
) {
298 *sheight
= des
->height
- *dy
;
301 if (*sheight
> 0 && *swidth
> 0) {
307 RCombineArea(RImage
*image
, RImage
*src
, int sx
, int sy
, unsigned width
,
308 unsigned height
, int dx
, int dy
)
315 if(!calculateCombineArea(image
, src
, &sx
, &sy
, &width
, &height
, &dx
, &dy
))
318 if (!HAS_ALPHA(src
)) {
319 if (!HAS_ALPHA(image
)) {
320 swi
= src
->width
* 3;
321 dwi
= image
->width
* 3;
323 s
= src
->data
+ (sy
*(int)src
->width
+ sx
) * 3;
324 d
= image
->data
+ (dy
*(int)image
->width
+ dx
) * 3;
326 for (y
=0; y
< height
; y
++) {
327 memcpy(d
, s
, width
*3);
332 swi
= (src
->width
- width
) * 3;
333 dwi
= (image
->width
- width
) * 4;
335 s
= src
->data
+ (sy
*(int)src
->width
+ sx
) * 3;
336 d
= image
->data
+ (dy
*(int)image
->width
+ dx
) * 4;
338 for (y
=0; y
< height
; y
++) {
339 for (x
=0; x
< width
; x
++) {
350 int dalpha
= HAS_ALPHA(image
);
352 swi
= (src
->width
- width
) * 4;
353 s
= src
->data
+ (sy
*(int)src
->width
+ sx
) * 4;
355 dwi
= (image
->width
- width
) * 4;
356 d
= image
->data
+ (dy
*(int)image
->width
+ dx
) * 4;
358 dwi
= (image
->width
- width
) * 3;
359 d
= image
->data
+ (dy
*(int)image
->width
+ dx
) * 3;
362 for (y
=0; y
< height
; y
++) {
363 for (x
=0; x
< width
; x
++) {
365 calpha
= 255 - alpha
;
366 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
368 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
370 *d
= (((int)*d
* calpha
) + ((int)*s
* alpha
))/256;
384 RCombineAreaWithOpaqueness(RImage
*image
, RImage
*src
, int sx
, int sy
,
385 unsigned width
, unsigned height
, int dx
, int dy
,
392 int dalpha
= HAS_ALPHA(image
);
393 int dch
= (dalpha
? 4 : 3);
395 if(!calculateCombineArea(image
, src
, &sx
, &sy
, &width
, &height
, &dx
, &dy
))
398 d
= image
->data
+ (dy
*image
->width
+ dx
) * dch
;
399 dwi
= (image
->width
- width
)*dch
;
401 c_opaqueness
= 255 - opaqueness
;
402 #define OP opaqueness
403 if (!HAS_ALPHA(src
)) {
404 #define COP c_opaqueness
406 s
= src
->data
+ sy
*src
->width
*3;
407 swi
= (src
->width
- width
) * 3;
409 for (y
=0; y
< height
; y
++) {
410 for (x
=0; x
< width
; x
++) {
411 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
413 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
415 *d
= (((int)*d
*(int)COP
) + ((int)*s
*(int)OP
))/256;
426 s
= src
->data
+ sy
*src
->width
*4;
427 swi
= (src
->width
- width
) * 4;
429 for (y
=0; y
< height
; y
++) {
430 for (x
=0; x
< width
; x
++) {
431 tmp
= (*(s
+3) * opaqueness
)/256;
432 *d
= (((int)*d
*(int)(255-tmp
)) + ((int)*s
*(int)tmp
))/256;
434 *d
= (((int)*d
*(int)(255-tmp
)) + ((int)*s
*(int)tmp
))/256;
436 *d
= (((int)*d
*(int)(255-tmp
)) + ((int)*s
*(int)tmp
))/256;
451 RCombineImageWithColor(RImage
*image
, RColor
*color
)
455 int alpha
, nalpha
, r
, g
, b
;
459 if (!HAS_ALPHA(image
)) {
460 /* Image has no alpha channel, so we consider it to be all 255.
461 * Thus there are no transparent parts to be filled. */
468 for (i
=0; i
< image
->width
*image
->height
; i
++) {
470 nalpha
= 255 - alpha
;
472 *d
= (((int)*d
* alpha
) + (r
* nalpha
))/256;
474 *d
= (((int)*d
* alpha
) + (g
* nalpha
))/256;
476 *d
= (((int)*d
* alpha
) + (b
* nalpha
))/256;
486 RMakeTiledImage(RImage
*tile
, unsigned width
, unsigned height
)
490 unsigned long tile_size
= tile
->width
* tile
->height
;
491 unsigned long tx
= 0;
493 unsigned char *s
, *d
;
495 if (width
== tile
->width
&& height
== tile
->height
)
496 image
= RCloneImage(tile
);
497 else if (width
<= tile
->width
&& height
<= tile
->height
)
498 image
= RGetSubImage(tile
, 0, 0, width
, height
);
500 int has_alpha
= HAS_ALPHA(tile
);
502 image
= RCreateImage(width
, height
, has_alpha
);
507 for (y
= 0; y
< height
; y
++) {
508 for (x
= 0; x
< width
; x
+= tile
->width
) {
510 w
= (width
- x
< tile
->width
) ? width
- x
: tile
->width
;
514 memcpy(d
, s
+tx
*4, w
);
517 memcpy(d
, s
+tx
*3, w
);
522 tx
= (tx
+ tile
->width
) % tile_size
;
530 RMakeCenteredImage(RImage
*image
, unsigned width
, unsigned height
, RColor
*color
)
532 int x
, y
, w
, h
, sx
, sy
;
535 tmp
= RCreateImage(width
, height
, False
);
540 RClearImage(tmp
, color
);
542 if (image
->height
< height
) {
547 sy
= (image
->height
- height
)/2;
551 if (image
->width
< width
) {
556 sx
= (image
->width
- width
)/2;
560 RCombineArea(tmp
, image
, sx
, sy
, w
, h
, x
, y
);