In my application while user try to upload image, I want image size based on the screen resolution.
For example If image size is 9690 X 4400 then it should return its size depend on screen resolution instead of actual size.
For mac application (OSX) we can do with this statement and its return me size 561 X 264
NSImage *imageUpload = [[NSImage alloc] initWithContentsOfFile:fileName];
Same like mac how can we do for iOS app, any idea? plz help.
Is there any way to get this? I did google but not finding any results.
Thanks