I'm developing an application where a user could potentially try and load very very large images. These images are first displayed as thumbnails in a table view. My original code would crash on large images, so I'm rewriting it to first download the image directly to disk.
Is there a known way to resize an image on disk without entirely loading it into memory via UIImage
? I'm currently trying to resize using the categories on UIImage
as detailed here, but my app crashes on attempting to thumbnail a very large image (like, for example, this - warning, huge image).