blob: 6323289b94aa7ad3faa6f13990bf1ffa5aa5c1a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#!/bin/sh
if test "$#" -lt 2; then
echo "Usage: $0 '##|v|h' jpegs"
exit 2
fi
die() {
echo "$@"; exit 1
}
notify() {
case "$1" in
/*) url=file:"$1" ;;
*) url=file:"$PWD"/"$1" ;;
esac
konq=`dcop konqueror-\*`
for k in $konq; do
notify=`dcop $k KDirNotify-\*`
for n in $notify; do
dcop $k $n FilesChanged [ "$url" ] # $1 must be a url
done
done
}
IFS=:
for path in `kde-config --path data --expandvars`; do
PATH=$path/imagerotation:$PATH
done
export PATH
unset IFS
action=$1
case $action in
[1-8]|+[1-8]) o=$action ;;
90|[+-]90) o=+6 ;; # Use + for all these
270|[+-]270) o=+8 ;;
180|[+-]180) o=+3 ;;
v|-v) o=+4 ;;
h|-h) o=+2 ;;
*) die cannot understand transformation "$action" ;;
esac
shift
for file in "$@"; do
if orient.py $o "$file" | grep 'orientation changed' >/dev/null 2>&1; then
notify "$file"
continue
fi
### try jpegtran instead
if which jpegtran-mmx >/dev/null 2>&1; then
JPEGTRAN=jpegtran-mmx
else
if which jpegtran >/dev/null 2>&1; then
JPEGTRAN=jpegtran
else
die could not change orientation
fi
fi
case $action in
v|-v) c='-flip vertical' ;;
h|-h) c='-flip horizontal' ;;
*90) c='-rotate 90' ;;
*180) c='-rotate 180' ;;
*270) c='-rotate 270' ;;
+5) c='-transpose' ;;
+7) c='-transverse' ;;
*) die cannot understand transformation "$action" using jpegtran ;;
esac # others could be emulated, but ...
tmp="$file.a.$$"
cleandie() {
mv -i "$tmp" $"2" </dev/null 2>/dev/null; die "$@"
}
mv -i "$file" "$tmp" </dev/null 2>/dev/null || die unable to move temp files
$JPEGTRAN -copy all -outfile "$file" $c "$tmp" || cleandie error using jpegtran
rm "$tmp"
notify "$file"
done
|