In my app, user can select a pic from album or camera where i can get uiimage representation. Since the album may have pic from web, the file type is not only jpg. Then i need to sent it to the server without convertion. Here i can only use nsdata.
I know UIImageJPEGRepresentation and UIImagePNGRepresentation, but i think this two method may convert the original image. Maybe when quality set to 1 UIImageJPEGRepresentation can get original pic?
Is there any method to get the original uiimage nsdata?
In my app, user can select a pic from album or camera where i
Share
You can use the
ALAssetsLibraryandALAssetRepresentationto get the original data. Example:But there are some things to consider:
assetForURL:works asynchronously.assetForURL:will cause a confirmation dialog, which might be irritating the user:assetForURL:calls the failure block.assetForURL:will fail without asking the user again. Only if you reset the location warnings in System Settings, the user is asked again.So you should be prepared that this method fails and use
UIImageJPEGRepresentationorUIImagePNGRepresentationas a fallback. But in that case you will not get the original data, e.g. the metadata (EXIF etc.) are missing.