I’m looking for the fastest solution to encode an UIImage to a base64 string.
Also I’m wondering if the built-in solution provided by apple to convert an UIImage to NSData UIImageJPEGRepresentation(image, quality) is the best one.
I’m looking for the fastest solution to encode an UIImage to a base64 string.
Share
As per the article, a 5.3MB image (JPEG) file took < 50ms to encode, and about 140ms to decode using the base64. you can get the library code here