ADD resize to images script, CHANGE quality in images script, FIX image template to always use the optimize images if possible
This commit is contained in:
parent
d409a6ba1e
commit
4da5b6d6fd
2 changed files with 30 additions and 5 deletions
|
@ -1,6 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
PARAMS=('-quality 90')
|
||||
# Libary needed: ImageMagick
|
||||
|
||||
PARAMS=('-quality 60')
|
||||
|
||||
if [ $# -ne 0 ]; then
|
||||
PARAMS=$@;
|
||||
|
@ -12,9 +14,18 @@ shopt -s nullglob nocaseglob extglob
|
|||
shopt -s globstar
|
||||
|
||||
# Resize
|
||||
sizes=(320 640 960 1280)
|
||||
for FILE in static/**/*.@(jpg|jpeg|tif|tiff|png|gif); do
|
||||
DIR=$(dirname "$FILE")
|
||||
NAME=$(basename "$FILE" | cut -d. -f1)
|
||||
EXTENSION=$(basename "$FILE" | cut -d. -f2)
|
||||
for size in ${sizes[@]}; do
|
||||
convert "$FILE" -resize ${size}x${size}\> "${DIR}/${NAME}-${size}.${EXTENSION}"
|
||||
done
|
||||
done
|
||||
|
||||
# Web Optimized Formats
|
||||
for FILE in static/**/*.@(jpg|jpeg|tif|tiff|png); do
|
||||
for FILE in static/**/*.@(jpg|jpeg|tif|tiff|png|gif); do
|
||||
convert $PARAMS "$FILE" "${FILE}".webp;
|
||||
convert $PARAMS "$FILE" "${FILE}".avif;
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue