There is a bug on copy/cut to clipboard and will be fixed in next minor release. Unfortunately copy/cut functions copied also an non-existent alpha channel that is copied back "on paste". CopyObjectsToBack with native pixel format (last parameter = true) doesn't work with images having alpha channel, and this is the reason of the problem.
A workaround is to execute:
ImageEnVect1.RemoveAlphaChannel(); just before CopyObjectsToBack.
Or call CopyObjectsToBack with second parameter = false (MergeAlphaChannel):
ImageEnVect1.CopyObjectsToBack(true, false, false);
Hope this helps.
|