Page 1 of 1
ask for how to blend two image ?
Posted: Wed Jun 04, 2008 09:37
by pyhmail
1) I want to blend two image ,then generate a new image,what should I do?
Posted: Thu Jun 05, 2008 00:07
by daves
I think this kind of image blending might be supported more readily in your renderer (as opposed to your gui system). I recently did some image work where I had to "pick specific colors" from an image loaded and displayed on a cegui window.
Ultimately to solve this problem, given that i was doing pixel level manipulations, I had to use Ogre's image capabilities, and then integrate this with what i was doing in cegui.
Posted: Thu Jun 05, 2008 08:56
by CrazyEddie
Hi,
I agree with daves. Unless it's just simply overlaying a couple of images with alpha, you'd need to use the underlying engine or API to do any real compositing, and then use the results in CEGUI (if you need the results as part of your UI).
CE.