Hi Nigel.
Please Add the method
fImageEnIO.Params.UpdateEXIFThumbnail();
in the Unit iemview
procedure TImageEnMView.GetImageToFile(idx: Integer; const FileName: WideString);
var
bmp: TIEBitmap;
begin
fImageEnIO.Params.Assign( GetImageEnMIO.Params[idx] );
bmp := GetTIEBitmap(idx);
try
fImageEnIO.AttachedIEBitmap := bmp;
fImageEnIO.Params.UpdateEXIFThumbnail(); //Here Update Thumbnail.
fImageEnIO.SaveToFile(FileName);
finally
ReleaseBitmap(idx, false);
end;
end;
Thank you very much