繁体   English   中英

将图片保存到库时,iPhone应用程序崩溃

[英]iPhone app crashes when saving picture to library

在iPhone上测试应用程序时,我遇到了问题。 我有一种方法,可以将四个图像合而为一,然后将其保存到照片库中:

    - (UIImage *)combineImages{
        UIImage *image1 = firstImgView.image;
        UIImage *image2 = secondImgView.image;
        UIImage *image3 = thirdImgView.image;
        UIImage *image4 = fourthImgView.image;

        UIGraphicsBeginImageContext(image1.size);

        [image1 drawInRect:CGRectMake(0, 0, image1.size.width, image1.size.height)];
        [image2 drawInRect:CGRectMake(0, 0, image2.size.width, image2.size.height)];
        [image3 drawInRect:CGRectMake(0, 0, image3.size.width, image3.size.height)];
        [image4 drawInRect:CGRectMake(0, 0, image4.size.width, image4.size.height)];

        UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

        return resultingImage;  
    }
//save actual design in photo library
- (void)savePicture{
    UIImage *myImage = [self combineImages];
    UIImageWriteToSavedPhotosAlbum(myImage, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), self); 
}

//feedback if picture saving was successfull
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {  
    NSString *message;  
    NSString *title;  
    if (!error) {  
        title   = NSLocalizedString(@"Image saved", @"");  
       // message = NSLocalizedString(@"Your image was saved", @"");  
    } else {  
        title   = NSLocalizedString(@"Error", @"");  
        message = [error description];  
    }  
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title  
                                                    message:message  
                                                   delegate:nil  
                                          cancelButtonTitle:NSLocalizedString(@"Ok", @"")  
                                          otherButtonTitles:nil];  
    [alert show];  
    [alert release];  
} 

当我要测试它时,出现以下错误:

Program received signal:  “EXC_BAD_ACCESS”.
Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call dlopen at this time.)
warning: Cancelling call - objc code on the current thread's stack makes this unsafe.

在模拟器中,它可以正常工作。

如果图像总数超过1k x 1k像素,那么我的猜测是设备的内存不足。 Simulator具有更多的可用内存。 在模拟器版本上运行内存分配工具,查看图像和合成操作实际消耗的峰值数量。

我的猜测是,在将组合图像传递给UIImageWriteToSavedPhotosAlbum之前,必须保留该图像。 合并的图像会自动释放,可以在完成实际保存之前将其释放。 尝试这个:

//save actual design in photo library
- (void)savePicture{
    UIImage *myImage = [self combineImages];
    [myImage retain];
    UIImageWriteToSavedPhotosAlbum(myImage, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), self); 
}

//feedback if picture saving was successfull
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo {  
    [image release];
    // ...
}

发现错误...有点愚蠢的错误。 就是那条线

 // message = NSLocalizedString(@"Your image was saved", @""); 

我不应该评论它。 现在一切正常。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM