blob: 91ee91083ccfa97849d2391c24d2b22a74153e3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* The Python Imaging Library
* $Id$
*
* offset an image in x and y directions
*
* history:
* 96-07-22 fl: Created
* 98-11-01 cgw@pgt.com: Fixed negative-array index bug
*
* Copyright (c) Fredrik Lundh 1996.
* Copyright (c) Secret Labs AB 1997.
*
* See the README file for information on usage and redistribution.
*/
#include "Imaging.h"
Imaging
ImagingOffset(Imaging im, int xoffset, int yoffset) {
int x, y;
Imaging imOut;
if (!im) {
return (Imaging)ImagingError_ModeError();
}
imOut = ImagingNewDirty(im->mode, im->xsize, im->ysize);
if (!imOut) {
return NULL;
}
ImagingCopyPalette(imOut, im);
/* make offsets positive to avoid negative coordinates */
xoffset %= im->xsize;
xoffset = im->xsize - xoffset;
if (xoffset < 0) {
xoffset += im->xsize;
}
yoffset %= im->ysize;
yoffset = im->ysize - yoffset;
if (yoffset < 0) {
yoffset += im->ysize;
}
#define OFFSET(image) \
for (y = 0; y < im->ysize; y++) { \
for (x = 0; x < im->xsize; x++) { \
int yi = (y + yoffset) % im->ysize; \
int xi = (x + xoffset) % im->xsize; \
imOut->image[y][x] = im->image[yi][xi]; \
} \
}
if (im->image8) {
OFFSET(image8)
} else {
OFFSET(image32)
}
return imOut;
}
|