模拟器中的反转图像

时间:2011-06-03 16:54:43

标签: objective-c image-processing uiimageview uiimage ios-simulator

我有一些简单的代码,它从文档目录中提取图像..并将其加载到imageView中。

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSString* pathToFile = [NSString stringWithFormat:@"%@/images/%@",[self documentsDirectory],@"copy.jpg"];

    UIImageView *tmp = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:pathToFile]];

    [self.view addSubview:tmp];
}



- (NSString *)documentsDirectory
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    return [paths objectAtIndex:0];
}

我的图像在查看时显示正确,但是当它被加载到应用程序并在模拟器上查看时...它被反转。

示例:https://skitch.com/critz/fnh8p/colorsnapper

任何想法,建议......都会/非常/赞赏..

1 个答案:

答案 0 :(得分:0)

有趣...相同的代码库在> 4.2中运行并且图像被反转。如果我在5bx模拟器中运行它们,它们就应该出现.. SMH 。哦,好吧..