Hello! I need to use TImageEnIO in a windowless console application. What is the most "cheap" (in the sense of resource and memory consumption) to do this? Currently I use this code in the console application:
IEV := TImageEnView.Create(nil);
try
ThisImageMetadataText := GetAllMetaDataTextFromImage;
DoSomethingWith(ThisImageMetadataText);
finally
IEV.Free;
end;
However, I am not sure if there isn't a "cheaper" class than TImageEnView to use TImageEnIO?