50void *
imcpy_flipLR(
void *dest,
void *src,
size_t width,
size_t height,
size_t szof )
54 uint8_t *d = (uint8_t *)dest;
55 uint8_t *s = (uint8_t *)src;
56 for(
size_t rr = 0; rr < height; ++rr )
58 for(
size_t cc = 0; cc < width; ++cc )
60 d[rr * width + cc] = s[rr * width + ( width - 1 - cc )];
66 uint16_t *d = (uint16_t *)dest;
67 uint16_t *s = (uint16_t *)src;
68 for(
size_t rr = 0; rr < height; ++rr )
70 for(
size_t cc = 0; cc < width; ++cc )
72 d[rr * width + cc] = s[rr * width + ( width - 1 - cc )];
78 uint32_t *d = (uint32_t *)dest;
79 uint32_t *s = (uint32_t *)src;
80 for(
size_t rr = 0; rr < height; ++rr )
82 for(
size_t cc = 0; cc < width; ++cc )
84 d[rr * width + cc] = s[rr * width + ( width - 1 - cc )];
90 uint64_t *d = (uint64_t *)dest;
91 uint64_t *s = (uint64_t *)src;
92 for(
size_t rr = 0; rr < height; ++rr )
94 for(
size_t cc = 0; cc < width; ++cc )
96 d[rr * width + cc] = s[rr * width + ( width - 1 - cc )];
102 uint8_t *d = (uint8_t *)dest;
103 uint8_t *s = (uint8_t *)src;
104 for(
size_t rr = 0; rr < height; ++rr )
106 for(
size_t cc = 0; cc < width * szof; cc += szof )
108 for(
size_t pp = 0; pp < szof; ++pp )
110 d[rr * width * szof + cc + pp] = s[rr * width * szof + ( width * szof - szof - cc ) + pp];
118void *
imcpy_flipUDLR(
void *dest,
void *src,
size_t width,
size_t height,
size_t szof )
122 uint8_t *d = (uint8_t *)dest;
123 uint8_t *s = (uint8_t *)src;
124 for(
size_t rr = 0; rr < height; ++rr )
126 for(
size_t cc = 0; cc < width; ++cc )
129 d[rr * width + cc] = s[( height - 1 - rr ) * width + ( width - 1 - cc )];
136 uint16_t *d = (uint16_t *)dest;
137 uint16_t *s = (uint16_t *)src;
138 for(
size_t rr = 0; rr < height; ++rr )
140 for(
size_t cc = 0; cc < width; ++cc )
143 d[rr * width + cc] = s[( height - 1 - rr ) * width + ( width - 1 - cc )];
150 uint32_t *d = (uint32_t *)dest;
151 uint32_t *s = (uint32_t *)src;
152 for(
size_t rr = 0; rr < height; ++rr )
154 for(
size_t cc = 0; cc < width; ++cc )
157 d[rr * width + cc] = s[( height - 1 - rr ) * width + ( width - 1 - cc )];
164 uint64_t *d = (uint64_t *)dest;
165 uint64_t *s = (uint64_t *)src;
166 for(
size_t rr = 0; rr < height; ++rr )
168 for(
size_t cc = 0; cc < width; ++cc )
171 d[rr * width + cc] = s[( height - 1 - rr ) * width + ( width - 1 - cc )];
178 uint8_t *d = (uint8_t *)dest;
179 uint8_t *s = (uint8_t *)src;
180 for(
size_t rr = 0; rr < height; ++rr )
182 for(
size_t cc = 0; cc < width * szof; cc += szof )
184 for(
size_t pp = 0; pp < szof; ++pp )
186 d[rr * width * szof + cc + pp] =
187 s[( height - 1 - rr ) * width * szof + ( width * szof - szof - cc ) + pp];
void * imcpy(void *dest, void *src, size_t width, size_t height, size_t szof)
Copy one image to another, with no transformation.
void * imcpy_flipLR(void *dest, void *src, size_t width, size_t height, size_t szof)
Copy one image to another, flipping left-right.
void * imcpy_flipUDLR(void *dest, void *src, size_t width, size_t height, size_t szof)
Copy one image to another, flipping up-down and left-right.
void * imcpy_flipUD(void *dest, void *src, size_t width, size_t height, size_t szof)
Copy one image to another, flipping up-down.