Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a weird issue...

I have an image (a small thumbnail) included in the project AND as a file in the documents directory (both files are IDENTICAL)... when I load it into an image view using [UIImage imageNamed:xxx] it is perfect however when I load it into an image using [UIImage imageWithContentsOfFile:xxx] then it is really blocky....

Anyone have an idea why this would be... I repeat the images are identical (so it is not a different format or resolution which is the issue).

This is on the iPad, iOS 3.2

share|improve this question
This question is so old it's probably left the rest home. But I just ran into what appears to be the same thing. In my case it's nothing to do with scale factors, and everything to do with imageWithContentsOfFile: returning a 34x34 image, even though the source image is ten times that (and a different aspect ratio). I'm smelling an iOS bug, but instead of hunting it down I just worked around it. YMMV – sobri Mar 8 at 16:03

1 Answer

imageWithContentsOfFile: loads from the specified file, but imageNamed: tries to find a double precision version first. So, if you have an image file xxx@2x, it will be loaded instead of xxx.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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