I am developing an application in which a user places several UIImageViews one above the other. When the user decides to save this in the photo album, I need to combine all these UIImageView and save it in the Photo Library. Connecting them, I need to keep my positions, permissions, zorder. The approach I tried was to have a parent UIView that acts like a container. The user places all the UIImageView inside this UIView. While saving, I take a screenshot of the UIView and save it. Although this approach works, it does not preserve resolution. The resolution of the final image is the same as the resolution of the parent size of the UIView (width and height 300 pixels). Is there a way to keep the resolution? or at least have a higher resolution, for example, up to 1024 x 768 pixels? Any code examples / examples would be appreciated!
iphone uiimage uiimageview
plspl
source share