Hi,
I am trying to do something a bit difficult to me.
I would like to generate a composite tag wich is calculated by an external program...
I try this code but it doesn't work.
'Image::ExifTool::Composite' => {
T1x => {
Require => {
0 => 'GPSLatitude',
1 => 'GPSLongitude',
},
ValueConv => `C:/pkg-vc12/GeographicLib-1.46/bin/GeodSolve.exe --input-string "$val[0] $val[1] 180 1000"`
}}
Some help needed. Many thanks...
Try this (it has a chance of working):
ValueConv => '`C:/pkg-vc12/GeographicLib-1.46/bin/GeodSolve.exe --input-string "$val[0] $val[1] 180 1000"`',
The problem is that the ValueConv is a string that will be evaluated later, so you have to enclose the string in quotes.
- Phil
Great!
Always the good answer Phil ;)