I'm trying to create a UIView where I add 2 UIImageView inside and create an UIImage from this. Here is the method I use, but I get a blank UIImage.
Here is the code I use :
-(UIImage*)getFinalImage{
CGRect rect = CadreImage.frame;
UIView *dynaView = [[UIView alloc] initWithFrame:rect];
UIImageView *frontCadre = [[UIImageView alloc] initWithImage:TheImage];
[dynaView addSubview:frontCadre];
UIGraphicsBeginImageContextWithOptions(dynaView.bounds.size, dynaView.opaque, 0.0);
[dynaView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
Any help would be appreciated.
Thanks.
rect,frontCadre, etc. My guess is a messed up frame along the way. – Michael Boselowitz Jul 17 '12 at 16:452012-07-17 18:49:20.203 Pixamaz[1095:907] w:320.000000 2012-07-17 18:49:20.215 Pixamaz[1095:907] h:367.000000Where H and W represent height and width. – Bahaïka Jul 17 '12 at 16:50[self.view addSubview:dynaView];– Bahaïka Jul 17 '12 at 17:15