Implement vertical flipping

This commit is contained in:
Elias Batek 2024-10-07 04:06:31 +02:00
parent a2f437d4ad
commit 582e47c13b
1 changed files with 60 additions and 2 deletions

View File

@ -1870,7 +1870,7 @@ Pixmap rotateClockwiseNew(const Pixmap source) {
```
!. .!
#-. .-#
```
+/
@ -1908,7 +1908,7 @@ void flipHorizontallyInPlace(Pixmap source) @nogc {
foreach (idxA, ref px; halfA) {
const idxB = (line.length - (idxA + 1));
Pixel tmp = line[idxB];
const tmp = line[idxB];
// swap
line[idxB] = px;
px = tmp;
@ -1916,6 +1916,64 @@ void flipHorizontallyInPlace(Pixmap source) @nogc {
}
}
/++
Flips an image vertically.
```
## -
- ##
```
+/
void flipVertically(const Pixmap source, Pixmap target) @nogc {
debug assert(source.size == target.size);
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 flipVerticallyNew(const Pixmap source) {
auto target = Pixmap(source.size);
source.flipVertically(target);
return target;
}
/// ditto
void flipVerticallyInPlace(Pixmap source) {
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 (idx, ref pxA; a) {
const tmp = pxA;
pxA = b[idx];
b[idx] = tmp;
}
scanner.popFront();
scanner.popBack();
}
}
@safe pure nothrow @nogc:
// ==== Blending functions ====