In my iOS app, I\'m downloading jpeg images from the web, and I\'m wondering how to find the correct width and height of the image so I can display it properly in my iOS app. >
You can achieve this using UIImage Size property.
UIImage
Have a look at below:
UIImage *image; NSLog(@'Width=%f and Height: %f',image.size.width, image.size.height);
Store your web image into "image" object and you will get Width & Height of the image.
Cheers!