I am having a problem with IEvolution. It is specific to one or two computers at our side. These are Windows 7 64-bit systems. The version of IEvolution is: 4.4.1.0. The ieCore.dll and ievolution2.dll are both version 4.4.1.0. They are dated 08/11/2014.
The problem usually happens in conjunction with selecting a rectangular region.
The handler being called is this:
ieViewer1_SelectionChanged()
Within this code, the offending statement is most likely this:
ieViewer1.Image.PasteFromClipboard(true);
Now, leading up to this code is the following:
selImage.LoadImage(signatureFile, HiComponents.IEvolution.IEFileFormats.TIFF); selImage.IOParams.BitsPerSample = 8; selImage.SaveImage(@"image.png", HiComponents.IEvolution.IEFileFormats.PNG); MessageBox.Show("selImage Saved"); //selImage.LoadImage(@"image.png"); HiComponents.IEvolution.IERGB blackcolor = new HiComponents.IEvolution.IERGB(Color.Black); HiComponents.IEvolution.IERGB bluecolor = new HiComponents.IEvolution.IERGB(Color.Blue);