iPhone : How to save a view as image ??? (ex.save what you draw )

前端 未结 3 1680
暗喜
暗喜 2020-12-23 23:33

I found some sample is teach you how to draw on iphone

but it does not say how to save a view as image ?

Does anyone got idea ???

Or any sample will

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-24 00:34

    UIView *view = // your view    
    UIGraphicsBeginImageContext(view.bounds.size);
    [view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    

    This gives the image which you can store using –

    NSData *imageData = UIImageJPEGRepresentation(image, 1.0);
    [imageData writeToFile:path atomically:YES];
    

    where path is location you want to save to.

提交回复
热议问题