[Geeqie-devel] Pay for feature

2017-07-12 Thread Grant
Hello, I need the ability to copy EXIF data to the clipboard from the metadata viewer in Linux. Is anyone willing to work on this in exchange for payment? Thanks, Grant -- Check out the vibrant tech community on one of

Re: [Geeqie-devel] Pay for feature

2017-07-12 Thread Josef Kufner
You can make a shell script like this to show textual representation of EXIF: #!/bin/sh exiftool "$1" \ | zenity --text-info --font=Monospace --width=800 --height=600 --title="$1" Or like this to copy it directly to clipboard: #!/bin/sh exiftool "$1" | xsel And then set this script as an

Re: [Geeqie-devel] Pay for feature

2017-07-12 Thread colin clark
At the moment you can just highlight a single line of data. Do you just want to copy a single line to the clipboard, or a set of consecutive or non-consecutive lines? -- View this message in context: http://gnome-apps.13852.n7.nabble.com/Pay-for-feature-tp69948p69950.html Sent from the Geeqie

Re: [Geeqie-devel] Pay for feature

2017-07-12 Thread Roger
Yup. Just figured this out today as well. $ exiftool -s3 -CreateDate image.jpg Prints only the creation date of the file to stdout. I prefer the "-s3" option, as the option omits labels when piping the EXIF data within scripts. Also look at "-S" and "-s2" options, as well as finding your

Re: [Geeqie-devel] Pay for feature

2017-07-12 Thread Grant
> At the moment you can just highlight a single line of data. > Do you just want to copy a single line to the clipboard, or a set of > consecutive or non-consecutive lines? I'm hoping to copy the contents of a single field on a single line. - Grant