I get some compilation errors after installing the above mentioned version.
Any clues as to what I need to change to get it to cleanly compile?
This is the code:-
io.ParamsFromFile(fpath); if io.Params.FileType<>ioUnknown then begin idx:=ImageEnMView1.AppendImage; ImageEnMView1.ImageFileName[idx]:=fpath; ImageEnMView1.ImageTopText[idx].Caption:=inttostr(idx); ImageEnMView1.ImageInfoText[idx].Caption:=inttostr(io.Params.Width)+ 'x'+inttostr(io.Params.Height)+'x'+ inttostr(io.Params.BitsPerSample*io.Params.SamplesPerPixel)+'b'; ImageEnMView1.ImageBottomText[idx].Caption:=extractfilename(fpath); ImageEnMView1.ImageBottomText[idx].Background:=$00EFEFD0; end;
Error: Undeclared identifier ioUnknown. Error: String does not contain a member "Caption". Error: String does not contain a member "Background".
Note : These errors may have arisen with an earlier version of ImageEn but I have not been able install a recent version of ImageEn until today. To install the above mentioned version I had to manually compile the 4 packages.
Thank you for your reply. Before I saw your reply I tried adding component TImageEnMView to a new form. This added various units such as hyieutils and iexBitmaps.
I note that Delphi's help points to ioUnknown in unit hyieutils. Is that correct or do I have to recode this to iexBitmaps.ioUnknown?