From 5932b9d7d36039a72341fdaa2f0c92d177b5a685 Mon Sep 17 00:00:00 2001 From: gor_down Date: Wed, 5 Mar 2025 02:19:45 -0300 Subject: [PATCH] optimize char --- .local/bin/optimizechar | 110 +++++++++++++++++++++++++++++++++++++++ .scripts/optimizechar.sh | 110 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 220 insertions(+) create mode 100755 .local/bin/optimizechar create mode 100755 .scripts/optimizechar.sh diff --git a/.local/bin/optimizechar b/.local/bin/optimizechar new file mode 100755 index 0000000..886a7e8 --- /dev/null +++ b/.local/bin/optimizechar @@ -0,0 +1,110 @@ +#!/bin/bash + +# Function to downscale images if they're larger than 960x544 +downscale_image() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 960 or height > 544, resize + if [ "$width" -gt 960 ] || [ "$height" -gt 544 ]; then + mogrify -resize 960x544\> "$img" + echo "Downscaled $img to 960x544" + fi +} + +# Function to resize char_icon to 60x60 if it's bigger +resize_char_icon() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 60 or height > 60, resize + if [ "$width" -gt 60 ] || [ "$height" -gt 60 ]; then + convert "$img" -resize 60x60 "$img" + echo "Resized $img to 60x60" + fi +} + +# Function to optimize images using pngquant +optimize_images() { + local img="$1" + if [[ "$img" == *.png ]]; then + pngquant --force --ext .png "$img" + echo "Optimized $img using pngquant" + fi +} + +# Function to resize images in the emotions folder to 40x40 if they are bigger +resize_emotions_images() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 40 or height > 40, resize + if [ "$width" -gt 40 ] || [ "$height" -gt 40 ]; then + mogrify -resize 40x40\> "$img" + echo "Resized $img to 40x40" + fi +} + +# Delete all files containing "_on" in the filename +delete_files_with_on() { + local img="$1" + if [[ "$img" == *"_on"* ]]; then + rm -f "$img" + echo "Deleted $img" + fi +} + +# Delete all Thumbs.db files recursively +delete_thumbs_db() { + find . -type f -iname "Thumbs.db" -exec rm -f {} \; + echo "Deleted all Thumbs.db files" +} + +# Recursively find all image files except those in "emotions" directory +find . -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" -o -iname "*.bmp" \) | while read -r img; do + # Skip files in "emotions" folder + if [[ "$img" == *"/emotions/"* ]]; then + # Resize image in "emotions" folder if necessary + resize_emotions_images "$img" + continue + fi + + # Downscale image if necessary + downscale_image "$img" +done + +# Resize the char_icon image to 60x60 if it's larger than that +char_icon="char_icon" +for ext in jpg jpeg png gif bmp; do + if [ -f "$char_icon.$ext" ]; then + resize_char_icon "$char_icon.$ext" + break + fi +done + +# Optimize all images +find . -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" -o -iname "*.bmp" \) | while read -r img; do + optimize_images "$img" +done + +# Delete files containing "_on" in the filename +find . -type f | while read -r img; do + delete_files_with_on "$img" +done + +# Delete all Thumbs.db files recursively +delete_thumbs_db + +echo "Script completed!" diff --git a/.scripts/optimizechar.sh b/.scripts/optimizechar.sh new file mode 100755 index 0000000..886a7e8 --- /dev/null +++ b/.scripts/optimizechar.sh @@ -0,0 +1,110 @@ +#!/bin/bash + +# Function to downscale images if they're larger than 960x544 +downscale_image() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 960 or height > 544, resize + if [ "$width" -gt 960 ] || [ "$height" -gt 544 ]; then + mogrify -resize 960x544\> "$img" + echo "Downscaled $img to 960x544" + fi +} + +# Function to resize char_icon to 60x60 if it's bigger +resize_char_icon() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 60 or height > 60, resize + if [ "$width" -gt 60 ] || [ "$height" -gt 60 ]; then + convert "$img" -resize 60x60 "$img" + echo "Resized $img to 60x60" + fi +} + +# Function to optimize images using pngquant +optimize_images() { + local img="$1" + if [[ "$img" == *.png ]]; then + pngquant --force --ext .png "$img" + echo "Optimized $img using pngquant" + fi +} + +# Function to resize images in the emotions folder to 40x40 if they are bigger +resize_emotions_images() { + local img="$1" + local width height + # Get the image dimensions + dimensions=$(identify -format "%wx%h" "$img") + width=$(echo $dimensions | cut -d'x' -f1) + height=$(echo $dimensions | cut -d'x' -f2) + + # If width > 40 or height > 40, resize + if [ "$width" -gt 40 ] || [ "$height" -gt 40 ]; then + mogrify -resize 40x40\> "$img" + echo "Resized $img to 40x40" + fi +} + +# Delete all files containing "_on" in the filename +delete_files_with_on() { + local img="$1" + if [[ "$img" == *"_on"* ]]; then + rm -f "$img" + echo "Deleted $img" + fi +} + +# Delete all Thumbs.db files recursively +delete_thumbs_db() { + find . -type f -iname "Thumbs.db" -exec rm -f {} \; + echo "Deleted all Thumbs.db files" +} + +# Recursively find all image files except those in "emotions" directory +find . -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" -o -iname "*.bmp" \) | while read -r img; do + # Skip files in "emotions" folder + if [[ "$img" == *"/emotions/"* ]]; then + # Resize image in "emotions" folder if necessary + resize_emotions_images "$img" + continue + fi + + # Downscale image if necessary + downscale_image "$img" +done + +# Resize the char_icon image to 60x60 if it's larger than that +char_icon="char_icon" +for ext in jpg jpeg png gif bmp; do + if [ -f "$char_icon.$ext" ]; then + resize_char_icon "$char_icon.$ext" + break + fi +done + +# Optimize all images +find . -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" -o -iname "*.gif" -o -iname "*.bmp" \) | while read -r img; do + optimize_images "$img" +done + +# Delete files containing "_on" in the filename +find . -type f | while read -r img; do + delete_files_with_on "$img" +done + +# Delete all Thumbs.db files recursively +delete_thumbs_db + +echo "Script completed!"