1

optimise image

This commit is contained in:
Evan Pratten 2024-01-05 20:03:30 -05:00
parent c8c09b9c42
commit 669045e9c2
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View File

@ -34,8 +34,8 @@ for IMAGE in $IMAGES; do
# Create the preview. This should be a 2 fifths resolution version of the original image
convert $IMAGE -resize 40% $PREVIEW
elif [ $WIDTH -gt 720 ] || [ $HEIGHT -gt 720 ]; then
# Create the preview. This should be a half resolution version of the original image
convert $IMAGE -resize 50% $PREVIEW
# Create the preview. This should be a 3 quarters resolution version of the original image
convert $IMAGE -resize 75% $PREVIEW
else
# Create the preview. This should be the original image
cp $IMAGE $PREVIEW