From 271f66e624887b0db33dd7f6a8dc6cb28702a110 Mon Sep 17 00:00:00 2001 From: wissotsky Date: Sun, 16 Nov 2025 00:51:48 +0200 Subject: [PATCH] feat: add image stacking utility - Convert PNG sequence to rotated stacked TIFF - Natural version sorting for proper sequence ordering --- stack.sh | 1 + 1 file changed, 1 insertion(+) create mode 100755 stack.sh diff --git a/stack.sh b/stack.sh new file mode 100755 index 0000000..9ead095 --- /dev/null +++ b/stack.sh @@ -0,0 +1 @@ +convert +append $(find . -name "*.png" -print0 | sort -zV | xargs -r0 echo) -rotate -90 stacked.tiff \ No newline at end of file