簡體   English   中英

在iPhone中拍攝視圖的屏幕截圖時內存不足

[英]Low memory waning while taking screenshot of a view in iPhone

我有一個應用,其中我正在查看視圖的屏幕截圖並將該圖像保存在documents文件夾中。

我正在使用以下代碼。

CGSize size = self.view.bounds.size;
    CGRect cropRect;
    CGRect screenBounds = [[UIScreen mainScreen] bounds];
    if([self isPad])
    {
        cropRect = CGRectMake(145, 110, 476, 476);
    }
    else
    {
        if (screenBounds.size.height ==568)
        {

            cropRect = CGRectMake(40, 69, 240, 240);
        }

        else
        {
            cropRect = CGRectMake(40, 62, 240, 240);
        }
    }

    /* Get the entire on screen map as Image */
    UIGraphicsBeginImageContext(size);
    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage * mapImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    /* Crop the desired region */
    CGImageRef imageRef = CGImageCreateWithImageInRect(mapImage.CGImage, cropRect);
    UIImage * cropImage = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);

    /* Save the cropped image
     UIImageWriteToSavedPhotosAlbum(cropImage, nil, nil, nil);*/

    //save to document folder
    NSData * imageData = UIImageJPEGRepresentation(cropImage, 1.0);
    NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString* documentsDirectory = [paths objectAtIndex:0];

        imagename=[NSString stringWithFormat:@"Fff.jpg"];

    NSString* fullPathToFile = [documentsDirectory stringByAppendingPathComponent:imagename];
    ////NSLog(@"full path %@",fullPathToFile);
    [imageData writeToFile:fullPathToFile atomically:NO];

如果我將屏幕截圖拍攝15到20次,效果會很好,但是在那之后它會向我發出內存不足警告,並且此代碼之后應用程序將崩潰。

有沒有我可以使用的更優化的代碼,所以不會引起此類內存問題。

請幫我。

用我的波紋管方法捕獲屏幕。

- (UIImage *)captureView {

    //hide controls if needed
    CGRect rect = [self.view bounds];// Here define CGRect with your requirement of take screenshot of some part

    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    [self.view.layer renderInContext:context];   
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return img;

}

看到我的另一個答案howe-to-capture-uiview-top-uiview

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM