Simplified EXIF tag extraction in exec/image-info
This commit is contained in:
parent
f2e0c492bd
commit
0e818020cc
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION = git-20140102
|
VERSION = git-20140103
|
||||||
|
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
MANPREFIX = $(PREFIX)/share/man
|
MANPREFIX = $(PREFIX)/share/man
|
||||||
|
|
|
@ -12,7 +12,7 @@ filesize=$(du -Hh "$1" | cut -f 1)
|
||||||
|
|
||||||
geometry=$(identify -format '%wx%h' "$1[0]")
|
geometry=$(identify -format '%wx%h' "$1[0]")
|
||||||
|
|
||||||
tags=$(exiv2 -q pr -pi "$1" | awk '$1~"Keywords" { printf("%s,", $4); }')
|
tags=$(exiv2 -q -P v -g "Iptc.Application2.Keywords" "$1" | tr '\n' ',')
|
||||||
tags=${tags%,}
|
tags=${tags%,}
|
||||||
|
|
||||||
echo "${filesize}${s}${geometry}${tags:+$s}${tags}${s}${filename}"
|
echo "${filesize}${s}${geometry}${tags:+$s}${tags}${s}${filename}"
|
||||||
|
|
Loading…
Reference in New Issue