The AssignIEVisionImage raises an AV on the CopyMemory when used on the same instance used to get the IEVisionImage.
The following code:
IEBmp := TIEBitmap.Create;
try
IEBmp.Create(FImgFileName);
IEVImg := IEBmp.GetIEVisionImage;
IEVImg.smooth(ievGAUSSIAN);
IEBmp.AssignIEVisionImage(IEVImg);
finally
IEBmp.Free;
end;
Worked well in ImageEn 10.3, but raises an AV in 11.4.5.