Implement 180° rotation function

This commit is contained in:
Elias Batek 2024-10-07 04:50:28 +02:00
parent cf2e084a70
commit 8aaaa2a3c2
1 changed files with 52 additions and 0 deletions

View File

@ -1865,6 +1865,58 @@ Pixmap rotateClockwiseNew(const Pixmap source) {
return target;
}
/++
Rotates an image by 180°.
+/
void rotate180deg(const Pixmap source, Pixmap target) @nogc {
debug assert(source.size == target.size);
// Technically, this is implemented as flip vertical + flip horizontal.
auto src = PixmapScanner(source);
auto dst = PixmapScannerRW(target);
foreach (srcLine; src) {
auto dstLine = dst.back;
foreach (idxSrc, px; srcLine) {
const idxDst = (dstLine.length - (idxSrc + 1));
dstLine[idxDst] = px;
}
dst.popBack();
}
}
/// ditto
Pixmap rotate180degNew(const Pixmap source) {
auto target = Pixmap(source.size);
source.rotate180deg(target);
return target;
}
/// ditto
void rotate180degInPlace(Pixmap source) @nogc {
auto scanner = PixmapScannerRW(source);
while (!scanner.empty) {
auto a = scanner.front;
auto b = scanner.back;
// middle line? (odd number of lines)
if (a.ptr is b.ptr) {
break;
}
foreach (idxSrc, ref pxA; a) {
const idxDst = (b.length - (idxSrc + 1));
const tmp = pxA;
pxA = b[idxDst];
b[idxDst] = tmp;
}
scanner.popFront();
scanner.popBack();
}
}
/++
Flips an image horizontally.