Hello All,
I am working on one component where I need to scale and rotate image. following is flow of the component
Select the image from photo library -> show that image in UIImageView -> do the scaling -> save this image in document.
This works fine with image having low resolution.
but once I select the image with high resolution I first get Memory Warning level 1. but I cann't release that image, as I need to proceed further with same image.
I come to know image is unpacked by ( width * height * 4 ) so if I select image of 1800 * 1200 memory consumed is 8.6 MB [ Also checked with instrument ] .
Can any one help me to come over this issue? This creates 2 queuestion
- can we use images with high resolution ?
- what about 2 UIImageview with two high resolution images?
Thanks,
Sagar