|
|
@@ -0,0 +1,62 @@ |
|
|
|
/* |
|
|
|
* libpipi Proper image processing implementation library |
|
|
|
* Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org> |
|
|
|
* All Rights Reserved |
|
|
|
* |
|
|
|
* $Id$ |
|
|
|
* |
|
|
|
* This library is free software. It comes without any warranty, to |
|
|
|
* the extent permitted by applicable law. You can redistribute it |
|
|
|
* and/or modify it under the terms of the Do What The Fuck You Want |
|
|
|
* To Public License, Version 2, as published by Sam Hocevar. See |
|
|
|
* http://sam.zoy.org/wtfpl/COPYING for more details. |
|
|
|
*/ |
|
|
|
|
|
|
|
/* |
|
|
|
* rgb.c: RGB combining function |
|
|
|
*/ |
|
|
|
|
|
|
|
#include "config.h" |
|
|
|
#include "common.h" |
|
|
|
|
|
|
|
#include "pipi.h" |
|
|
|
#include "pipi_internals.h" |
|
|
|
|
|
|
|
pipi_image_t *pipi_rgb(pipi_image_t *i1, pipi_image_t *i2, pipi_image_t *i3) |
|
|
|
{ |
|
|
|
pipi_image_t *dst; |
|
|
|
pipi_pixels_t *i1p, *i2p, *i3p, *dstp; |
|
|
|
float *i1data, *i2data, *i3data, *dstdata; |
|
|
|
int x, y, w, h; |
|
|
|
|
|
|
|
if(i1->w != i2->w || i1->h != i2->h || i1->w != i3->w || i1->h != i3->h) |
|
|
|
return NULL; |
|
|
|
|
|
|
|
w = i1->w; |
|
|
|
h = i1->h; |
|
|
|
|
|
|
|
dst = pipi_new(w, h); |
|
|
|
dstp = pipi_getpixels(dst, PIPI_PIXELS_RGBA_F); |
|
|
|
dstdata = (float *)dstp->pixels; |
|
|
|
|
|
|
|
i1p = pipi_getpixels(i1, PIPI_PIXELS_Y_F); |
|
|
|
i1data = (float *)i1p->pixels; |
|
|
|
i2p = pipi_getpixels(i2, PIPI_PIXELS_Y_F); |
|
|
|
i2data = (float *)i2p->pixels; |
|
|
|
i3p = pipi_getpixels(i3, PIPI_PIXELS_Y_F); |
|
|
|
i3data = (float *)i3p->pixels; |
|
|
|
|
|
|
|
for(y = 0; y < h; y++) |
|
|
|
{ |
|
|
|
for(x = 0; x < w; x++) |
|
|
|
{ |
|
|
|
dstdata[4 * (y * w + x)] = i1data[y * w + x]; |
|
|
|
dstdata[4 * (y * w + x) + 1] = i2data[y * w + x]; |
|
|
|
dstdata[4 * (y * w + x) + 2] = i3data[y * w + x]; |
|
|
|
dstdata[4 * (y * w + x) + 3] = 1.0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return dst; |
|
|
|
} |
|
|
|
|