THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 15/08/2005 at 04:38, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 9.102
Platform: Windows ;
Language(s) : C++ ;
---------
I want to scale down images and copy them
into one big image by
image[0]->ScaleBicubic(bigImage, 0, 0, 500, 500, 0, 0, 100, 100);
image[1]->ScaleBicubic(bigImage, 0, 0, 500, 500, 100, 100, 200, 200);
The resulting image only contains one of the two
pictures as if the other would be overridden with
black color. Is this the way it should work?
Init. looks like:
BaseBitmap *m_bigImage;
bigImage = BaseBitmap::Alloc();
bigImage->Init(200, 200, 32);