How to convert all image format into .png format?

前端 未结 2 2070
遇见更好的自我
遇见更好的自我 2020-12-18 13:02

I am making a small application where I am receiving images from web-service. I am getting the image url. And the format of images is different different like .jpg,.gif,.png

2条回答
  •  囚心锁ツ
    2020-12-18 13:46

    after you retrieve your images/url save them this way:

    NSData *imageData = UIImagePNGRepresentation(image);
    [imageData writeToFile:savedImagePath atomically:YES];
    

提交回复
热议问题