You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
315 B
14 lines
315 B
9 years ago
|
#!/bin/bash
|
||
|
|
||
|
#Создан: Вт 27 янв 2015 21:41:37
|
||
|
#Изменён: Ср 20 янв 2016 11:59:05
|
||
|
|
||
|
#Создание миниатюр изображений
|
||
|
|
||
|
mkdir -p "${1:-.}/th";
|
||
|
for i in *.jpg; {
|
||
|
convert -define jpeg:size=95x95 "$i" -thumbnail 95x95^ \
|
||
|
-gravity center -extent 95x95 "th/$i"
|
||
|
}
|
||
|
|