I'm shooting often with natural density filters and long exposure times.
There is a little extra workflow step for these files, why I implemented a little mark in the thumbnail info that shows the exposure time for all files with more than 1 second exposure.
See the code below.
My question: Is it possible to use this - or a similar - code to filter for these files instead of 'only' use an indicator?
Greetings,
Ulrich
Code: Select all
%code
var
....
cExposureTime: Widestring;
begin
....
cExposureTime := '%xmp:exif:ExposureTime'
if (cExposureTime <> '') then
begin
if (LeftStr(cExposureTime,2) <> '1/') then
begin
result := result + '<font bgcolor="#FF008888" color="#000000" bgradius="0.3"> ' + cExposureTime + ' </font> ';
end;
end;
end;
%/code