Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello my name is Sebastian, I am new here and also relative new in objective-c / xcode and last but not least my english is not the best. I hope I get some help anyway.

My problem is I use a UIImagepicker to get images from the library or camera into a Imageview, subview of a scrollview. Than the user can zoom and scroll the image and after this it should be cutted and resized. This part works but the problem is a memory problem. As far as I release one image or content I only get bad_excess because how should I say "everything is linked" with eachother. I am looking for a solution to release the images and get the memory free back. I hope someone has a solution for me, I did a lot of googleling and testing a lot but without any improvement :-(

-(void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{


UIImage *userTempImage = [info objectForKey:UIImagePickerControllerOriginalImage ];


cutImageZoomView.bouncesZoom = NO;  
cutImageZoomView.delegate = self;  
cutImageZoomView.clipsToBounds = YES;  

[cutImage initWithImage:userTempImage];

cutImage.autoresizingMask = ( UIViewAutoresizingFlexibleWidth );  
[cutImageZoomView addSubview:cutImage];

cutImageZoomView.contentSize = [cutImage frame].size; 

CGRect scrollViewFrame = cutImageZoomView.frame;
CGFloat scaleWidth = scrollViewFrame.size.width / cutImageZoomView.contentSize.width;
CGFloat scaleHeight = scrollViewFrame.size.height / cutImageZoomView.contentSize.height;
CGFloat maxScale = MAX(scaleWidth, scaleHeight);
cutImageZoomView.minimumZoomScale = maxScale;

cutImageZoomView.maximumZoomScale = 2.0f;
cutImageZoomView.zoomScale = maxScale;

cutImageView.hidden=NO;
[self.view bringSubviewToFront:cutImageView];

[self dismissModalViewControllerAnimated:YES];

-(IBAction)cutImage{


CGRect visibleRect;
float scale = 1.0f/cutImageZoomView.zoomScale;


if(cutImage.image.size.width!=CGImageGetWidth(cutImage.image.CGImage))
{

    CGSize uploadSize=CGSizeMake(cutImage.image.size.width, cutImage.image.size.height);

    UIGraphicsBeginImageContext(uploadSize);

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextRotateCTM (context, M_PI /2);

    CGContextTranslateCTM(context, 0,-cutImage.image.size.width);

    CGContextScaleCTM(context, 1, -1);

    CGContextTranslateCTM(context, 0,-cutImage.image.size.width);

    CGContextDrawImage(UIGraphicsGetCurrentContext(), CGRectMake(0, 0, cutImage.image.size.height, cutImage.image.size.width), cutImage.image.CGImage);
    UIImage *imageCopy = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    [cutImage setImage:imageCopy];

    NSLog(@"90 degress rotated");


}
else{
    NSLog(@"image had right orientation");
}



visibleRect.origin.x = cutImageZoomView.contentOffset.x * scale;
visibleRect.origin.y = cutImageZoomView.contentOffset.y * scale;
visibleRect.size.width = cutImageZoomView.bounds.size.width * scale;
visibleRect.size.height = cutImageZoomView.bounds.size.height * scale;
NSLog(@"%f - %f    %fx%f",visibleRect.origin.x,visibleRect.origin.y,visibleRect.size.width,visibleRect.size.height);


CGImageRef imageRef = CGImageCreateWithImageInRect([cutImage.image CGImage], visibleRect);
UIImage *resizedProfilImage = [UIImage imageWithCGImage:imageRef]; 

[cutImage setImage:nil];


CGImageRelease(imageRef);

CGSize uploadSize=CGSizeMake(640, 920);

UIGraphicsBeginImageContext( uploadSize );
[resizedProfilImage drawInRect:CGRectMake(0,0,uploadSize.width,uploadSize.height)];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();



[userProfilImage setImage:newImage];

cutImageView.hidden=YES;

[self.view sendSubviewToBack:cutImageView];

Thank you for any help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.