Camera image rotation issue

后端 未结 3 653
独厮守ぢ
独厮守ぢ 2021-02-09 04:41

I am facing a very strange problem here. When i click an image in portrait mode and upload it and then again fetch it it is displayed rotated 90 degrees counter clock wise. But

3条回答
  •  野的像风
    2021-02-09 04:47

    TRy using this one:

    NSData *profileData =  UIImageJPEGRepresentation(self.profileImgView.image, 1.0); 
    

    instead of:

    NSData *profileData = UIImagePNGRepresentation(profileImgView.image);
    

    Hope it works. :)

提交回复
热议问题