How to easily resize/optimize an image size with iOS?
A couple of suggestions are provided as answers to this question. I had suggested the technique described in this post, with the relevant code: + (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize; { UIGraphicsBeginImageContext( newSize ); [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)]; UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return newImage; } As far as storage of the image, the fastest image format to use with … Read more