Bilder vom iPhone bearbeiten
This commit is contained in:
parent
370f5109b5
commit
029c55c06e
6 changed files with 80 additions and 10 deletions
10
heic-scripts/jpg_resize
Normal file
10
heic-scripts/jpg_resize
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
# JPG Bilder auf max. 1920px verkleinern
|
||||
# Überschreibt die Originale!
|
||||
|
||||
for file in *.{jpg,JPG,jpeg,JPEG}; do
|
||||
if [[ -f "$file" ]]; then
|
||||
mogrify -resize 1920x1920\> "$file"
|
||||
echo "Verkleinert: $file"
|
||||
fi
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue