Files
wmaker/wrlib/flip.c
T

138 lines
2.8 KiB
C
Raw Normal View History

2014-05-21 11:59:48 +07:00
/* flip.c - image flip
*
* Raster graphics library
*
* Copyright (c) 2014 Window Maker Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include <config.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
#include "wraster.h"
RImage *RVerticalFlipImage(RImage *image)
{
RImage *img;
int nwidth, nheight;
int x, y;
int bpp = image->format == RRGBAFormat ? 4 : 3;
nwidth = image->width;
nheight = image->height;
img = RCreateImage(nwidth, nheight, True);
if (!img)
return NULL;
if (bpp == 3) {
2014-05-26 22:42:44 +08:00
unsigned char *optr, *nptr;
optr = image->data;
nptr = img->data + 4 * (nwidth * nheight - nwidth);
for (y = 0; y < nheight; y++) {
for (x = 0; x < nwidth; x++) {
nptr[0] = optr[0];
nptr[1] = optr[1];
nptr[2] = optr[2];
nptr[3] = 255;
optr += 3;
nptr += 4;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
nptr -= nwidth*8;
}
} else {
unsigned char *optr, *nptr;
optr = image->data;
nptr = img->data + 4 * (nwidth * nheight - nwidth);
for (y = 0; y < nheight; y++) {
for (x = 0; x < nwidth; x++) {
nptr[0] = optr[0];
nptr[1] = optr[1];
nptr[2] = optr[2];
nptr[3] = optr[3];
optr += 4;
nptr += 4;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
nptr -= nwidth * 8;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
}
2014-05-21 11:59:48 +07:00
return img;
}
RImage *RHorizontalFlipImage(RImage *image)
{
RImage *img;
int nwidth, nheight;
int x, y;
int bpp = image->format == RRGBAFormat ? 4 : 3;
nwidth = image->width;
nheight = image->height;
img = RCreateImage(nwidth, nheight, True);
if (!img)
return NULL;
if (bpp == 3) {
2014-05-26 22:42:44 +08:00
unsigned char *optr, *nptr;
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
optr = image->data;
nptr = img->data + 4 * (nwidth - 1);
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
for (y = nheight; y; y--) {
for (x = 0; x < nwidth; x++) {
nptr[0] = optr[0];
nptr[1] = optr[1];
nptr[2] = optr[2];
nptr[3] = 255;
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
optr += 3;
nptr -= 4;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
nptr += 8 * nwidth;
}
} else {
unsigned char *optr, *nptr;
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
optr = image->data;
nptr = img->data + 4 * (nwidth - 1);
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
for (y = nheight; y; y--) {
for (x = 0; x < nwidth; x++) {
nptr[0] = optr[0];
nptr[1] = optr[1];
nptr[2] = optr[2];
nptr[3] = optr[3];
2014-05-21 11:59:48 +07:00
2014-05-26 22:42:44 +08:00
optr += 4;
nptr -= 4;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
nptr += 8 * nwidth;
2014-05-21 11:59:48 +07:00
}
2014-05-26 22:42:44 +08:00
}
2014-05-21 11:59:48 +07:00
return img;
}