vote up 0 vote down star

hi all, i am new to iPhone. i want to get the height of a image. so i can set the frame of UIImageview accordingly. Please suggest how can i get the original size(width and height) of image.

flag

6% accept rate

3 Answers

vote up 1 vote down

You can try to check

[[UIImage imageNamed:@"myImage.png"] size].height;
[[UIImage imageNamed:@"myImage.png"] size].width;
link|flag
Ok, 3 seconds faster than me, you win. :) – SanHolo Nov 4 at 11:18
oh sorry. I wrote it from PC, not mac) so the only aim was to show a principle) anyway, thanks for correction. – Morion Nov 4 at 12:15
vote up 3 vote down

Well, if you have the image as UIImage, then you want to take a look at the size property:

CGFloat width = myImage.size.width;
CGFloat height = myImage.size.height;
link|flag
vote up 1 vote down

Maybe this also helping you:

UIImage *image = [ UIImage imageNamed: @"image.png" ];
imageView.bounds = CGRectMake(0, 0, image.size.width, image.size.height);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.