Pages : 1
#1 Le 01/08/2006, à 15:04
- nknico
[Résolu] Besoin d'un petit script
Bonjour à tous !!
J'aurais besoin d'un petit script bash...Mais je ne sais pas comment m'y prendre...
Il faudrait que ce script redimentionne une image PNG en 128x128, puis 64x64, 32x32 etc ... et mette l'image repectivement dans les répertoires ~/.kde/share/icons/crystalsvg/128x128/apps .....64x64....etc....
Quelqu'un pourrait-il m'aider ?
Merci beaucoup !!
Dernière modification par nknico (Le 01/08/2006, à 15:59)
Nico
Hors ligne
#2 Le 01/08/2006, à 15:41
- ganlhi
Re : [Résolu] Besoin d'un petit script
#! /bin/bash
# Usage : monscript monimage mondossier sousdossier
# Exemple : monscript pouet.png ~/.kde/share/icons/crystalsvg/ apps
convert -scale 128x128 $1 $2"/128x128/"$3"/"$1
convert -scale 64x64 $1 $2"/64x64/"$3"/"$1
convert -scale 32x32 $1 $2"/32x32/"$3"/"$1
convert -scale 22x22 $1 $2"/22x22/"$3"/"$1
convert -scale 16x16 $1 $2"/16x16/"$3"/"$1
echo "Terminé !"
exit 0
Ca devrait marcher !
-- Ganlhi --
Hors ligne
#3 Le 01/08/2006, à 15:58
- nknico
Re : [Résolu] Besoin d'un petit script
Ça marche !
Merci beaucoup!
Nico
Hors ligne
#4 Le 01/08/2006, à 16:05
- ganlhi
Re : [Résolu] Besoin d'un petit script
De rien
-- Ganlhi --
Hors ligne