我尝试使用信号量改进我使用的一些照片处理脚本。我运行 sable GNU/DEBIAN 有一个名为 travail 的函数,它使用给定的文件名作为参数,并处理该文件。
目前,该函数在同一脚本中通过循环调用:
for i in *.png ; do
travail $i &
done
问题是如果有很多图片,它会使用大量内存。我想使用信号量来限制线程数量。
我试过:
for i in *.png ; do
sem -j+0 travail $i
done
sem --wait
但它不起作用,并显示以下消息: /bin/bash: travail : commande introuvable (这意味着找不到命令)
我尝试在定义函数后添加export -f travail,但它不起作用。
输出示例(此示例有 2 个文件)
图像 113_XT1S3739.png Convert-im6.q16 的问题:无法打开图像
x': Aucun fichier ou dossier de ce type @ error/blob.c/OpenBlob/2874. convert-im6.q16: no decode delegate for this image format
“@ error/constitute.c/ReadImage/560”。 Convert-im6.q16:选项-quality': -unsharp @ error/convert.c/ConvertImageCommand/2460. composite-im6.q16: invalid argument for option
-quality' 的参数无效:sortie/grand_format/ne_pas_publier_113_XT1S3739.jpg @ error/composite.c/CompositeImageCommand/1241。图像 113_XT1S3779.png Convert-im6.q16 的问题:无法打开图像x': Aucun fichier ou dossier de ce type @ error/blob.c/OpenBlob/2874. convert-im6.q16: no decode delegate for this image format
“@ error/constitute.c/ReadImage/560”。 Convert-im6.q16:选项-quality': -unsharp @ error/convert.c/ConvertImageCommand/2460. composite-im6.q16: invalid argument for option
-quality' 的参数无效:sortie/grand_format/ne_pas_publier_113_XT1S3779.jpg @ error/composite.c/CompositeImageCommand/1241。 ETC。
有关更多信息,这是脚本
# !/bin/bash
# _____________________________ Paramètres
T_WEB="1000" # Taille maxi des images pour le web
Q_WEB="100" # Qualité des images pour le web (100 car il faut les réouvrir pour mettre le logo)
#
H_MOY="1795" # Hauteur maxi des images pour impression ?x15
L_MOY_11="1347" # Largeur maxi des images pour impression 11x15
L_MOY_10="1204" # Largeur maxi des images pour impression 10x15
Q_MOY="96" # Qualité des images pour impression 10x15
#
Q_GRA="99" # Qualité des grandes images
#
B_INT="0.1%" # Taille de la bordure intérieure
B_CEN="0.3%" # Taille de la bordure intérieure
B_EXT="4%" # Taille de la bordure extérieure
C_INT="white" # Couleur de la bordure intérieure
C_CEN="black" # Couleur de la bordure intérieure
C_EXT="white" # Couleur de la bordure extérieure
#
# __________________________________________________________________
#
# Fonction principale
#
function travail
{
# Lecture du nom de fichier à traiter
local f=$1
echo 'travail sur image' $f
# Récupération d'infos sur l'image en cours
local LARG=`convert -quiet -ping $f -format "%w" info:`
local HAUT=`convert -quiet -ping $f -format "%h" info:`
local LARG=${LARG:0:4} # On ne conserve que les 4 premiers chiffres, le reste n'est pas bon
local HAUT=${HAUT:0:4}
local DECALE_X=$(($LARG/24))
local DECALE_Y=$(($HAUT/22))
#
# Récupération du nom du fichier et de l'extension
local nomfichier="${f%%.*}"
#
# Recuperation donnees EXIF (elles sont écrites dans un fichier temporaire)
if [ -f "${nomfichier}.RAF" ]
then
exiv2 -q ex ${nomfichier}.RAF
fi
if [ -f "${nomfichier}.NEF" ]
then
exiv2 -q ex ${nomfichier}.NEF
fi
#
# Ajout des bordures
convert $f -quiet -bordercolor ${C_INT} -border ${B_INT} -bordercolor ${C_CEN} -border ${B_CEN} -bordercolor ${C_EXT} -border ${B_EXT}x${B_EXT} -quality 01 /tmp/$f
#
# Création image WEB
convert /tmp/$f -resize ${T_WEB}x${T_WEB} -quality ${Q_WEB} -unsharp 3 sortie/web/${nomfichier}_pour_internet.jpg
if [ -f "${nomfichier}.NEF" ]
then
mv ${nomfichier}.exv sortie/web/${nomfichier}_pour_internet.exv
exiv2 in sortie/web/${nomfichier}_pour_internet.jpg
exiftool -Orientation=1 -n sortie/web/${nomfichier}_pour_internet.jpg
rm sortie/web/${nomfichier}_pour_internet.jpg_original
fi
#
# Ajout logo puis conversion en JPG
composite -compose Over -geometry +$DECALE_X+$DECALE_Y -gravity SouthEast /home/pierre/Documents/Photo/baniere-logo/logo_800x600.png /tmp/$f -quality ${Q_GRA} sortie/grand_format/ne_pas_publier_${nomfichier}.jpg
#
if [ -f "${nomfichier}.NEF" ]
then
mv sortie/web/${nomfichier}_pour_internet.exv sortie/grand_format/ne_pas_publier_${nomfichier}.exv
exiv2 in sortie/grand_format/ne_pas_publier_${nomfichier}.jpg
exiftool -Orientation=1 -n sortie/grand_format/ne_pas_publier_${nomfichier}.jpg
rm sortie/grand_format/ne_pas_publier_${nomfichier}.jpg_original
rm sortie/grand_format/ne_pas_publier_${nomfichier}.exv
fi
# Suppression des fichiers inutiles
rm /tmp/$f
if [ -f "${nomfichier}.RAF" ]
then
rm ${nomfichier}.exv
fi
}
#
# _____________________________ Création des dossiers et préparation ___________________________________________
if test -e sortie; then
rm -rf sortie
fi
mkdir sortie
mkdir sortie/web
mkdir sortie/grand_format
#
# _____________________________ Appel de la fonction en parallèle sur toutes les images PNG
#
#
for i in *.png ; do
travail $i &
done
wait
#
# _____________________________ Fin de la fonction ________________________________________________________
#
echo
echo TERMINÉ