ie. a script that allows resizing images:
1 : Create script
#!/bin/bash
title="redimensionar_imagen"
scale="resize : <height>x<width>"
imgsize=
`gdialog --title "$title" --inputbox "$scale" 200 100 2>&1`
while [ $# -gt 0 ]; do
pic = $1
/usr/bin/convert -scale $imgsize "$pic" "$imgsize-$pic"
shift
done
2 : save this in ~/.gnome2/nautilus-scripts
3 : and ready, now it can use in nautilus
Download: pack with multiple scripts.
References : G-Script.
No comments:
Post a Comment