From f1998c321a4eec6d75b58d84aa8610971bf21979 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 31 Jul 2021 11:35:39 -0600 Subject: move static files into static sub-dir, refactor nix a bit --- pic-resize.sh | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100755 pic-resize.sh (limited to 'pic-resize.sh') diff --git a/pic-resize.sh b/pic-resize.sh deleted file mode 100755 index 849d395..0000000 --- a/pic-resize.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -# requires imagemagick and perl-image-exiftool - -set -e - -widths="500 1000 1500 2000 2500 3000" - -for img in $@; do - echo $img - - # make target directories - dir=$(dirname "$img") # gets directory - for targetWidth in $widths; do - mkdir -p $dir/${targetWidth}px - done - - # get width - width=$(identify "$img" | awk '{print $3}' | cut -dx -f1) - echo -e "\toriginal width: $width" - - echo -e "\tremoving metadata" - exiftool -all= "$img" - rm -f "${img}_original" # exiftool makes a copy of the original, delete it - - for targetWidth in $widths; do - targetFile=$dir/${targetWidth}px/$(basename "$img") - echo -en "\tresizing into $targetFile... " - if [ "$targetWidth" -ge "$width" ]; then - echo "skipping, original image too small" - continue - elif [ -e "$targetFile" ]; then - echo "skipping, target file exists" - continue - fi - convert "$img" -resize $targetWidth "$targetFile" - echo "done" - done -done -- cgit v1.2.3