Reputation: 895
I would like to know how to load first a low quality UIImage and then load the original UIImage in high quality. Does it have an algorithm to do this in objective-c? I checked it out the class NYXImagesKit but it only works with iOS 5+ because it uses Core Image framework...And i need to work this with iOS 4.3+. Its effect is like Facebook app does.
JUST A edit:
check this out : http://www.codinghorror.com/blog/2005/12/progressive-image-rendering.html
i want to do the Effect number 2
Upvotes: 1
Views: 746
Reputation: 11970
From the docs:
Incrementally Loading an Image
If you have a very large image, or are loading image data over the web, you may want to create an incremental image source so that you can draw the image data as you accumulate it. You need to perform the following tasks to load an image incrementally from a CFData object:
Upvotes: 2