3

嗨,我是 iOS 新手。

我正在开发一个应用程序,它包含照片编辑功能。为此,我可以从照片库中挑选照片。我可以成功地挑选照片并将其放在 UIImageView 中。但我觉得它不是那么好。它与在相册中显示和在 UIImageView 中显示有很多不同。

我希望像显示在相册中一样显示它。我怎样才能做到这一点?

请指导我。

- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    // Access the uncropped image from info dictionary
    UIImage *originalImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    NSLog(@"size of originalImage is %@",NSStringFromCGSize(originalImage.size));
    editingPhotoImgVw.frame = CGRectMake(0, 0, 320,self.view.frame.size.height);
    editingPhotoImgVw.image =originalImage;
    [editingPhotoImgVw setContentMode:UIViewContentModeScaleAspectFit];
    [self.view addSubview:editingPhotoImgVw];
    [self dismissModalViewControllerAnimated:YES];
    [picker release];

}

在相册中显示在此处输入图像描述

在应用程序中显示 在此处输入图像描述

更改后[editingPhotoImgVw setContentMode:UIViewContentModeScaleAspectFit]; 进入[editingPhotoImgVw setContentMode:UIViewContentModeScaleToFill]; 根据 iSanjay 的评论 在此处输入图像描述

4

1 回答 1

1

您正在使用图像内容模式,例如

[editingPhotoImgVw setContentMode:UIViewContentModeScaleAspectFit];

而不是这个尝试

[editingPhotoImgVw setContentMode:UIViewContentModeScaleToFill];

做这个 。

于 2012-09-12T07:04:37.357 回答