how to compress image in iphone?

后端 未结 3 714
离开以前
离开以前 2020-12-15 14:14

I m taking images from photo library.I have large images of 4-5 mb but i want to compress those images.As i need to store those images in local memory of iphone.for using le

3条回答
  •  遥遥无期
    2020-12-15 14:55

    NSData *UIImageJPEGRepresentation(UIImage *image, CGFloat compressionQuality);
    

    OR

    NSData *image_Data=UIImageJPEGRepresentation(image_Name,compressionQuality);
    

    return image as JPEG. May return nil if image has no CGImageRef or invalid bitmap format. compressionQuality is 0(most) & 1(least).

提交回复
热议问题