19

我想更改我的 UIImageView 高度/宽度以匹配我从相册中选择的图像,我在这里找到了一个片段。

-(CGRect)frameForImage:(UIImage *)imgs inImageViewAspectFit:(UIImageView *)imagev
{
  float imageRatio = imgs.size.width / imgs.size.height;
  float viewRatio = imagev.frame.size.width / imagev.frame.size.height;
  if(imageRatio < viewRatio)
  {
    float scale = imagev.frame.size.height / imgs.size.height;
    float width = scale * imgs.size.width;
    float topLeftX = (imagev.frame.size.width - width) * 0.5;
    NSLog(@"image after aspect fit: width=%f",width);
    imagev.frame = CGRectMake(topLeftX, 0, width, imagev.frame.size.height);
    return CGRectMake(topLeftX, 0, width, imagev.frame.size.height);
  }
  else
  {
    float scale = imagev.frame.size.width / imgs.size.width;
    float height = scale * imgs.size.height;
    float topLeftY = (imagev.frame.size.height - height) * 0.5;
    NSLog(@"image after aspect fit: height=%f", height);
    imagev.frame = CGRectMake(0, topLeftY, imagev.frame.size.width, height);
    return CGRectMake(0, topLeftY, imagev.frame.size.width, height);
  }
}

问题是当我从按钮调用它时它会改变 UIImageView 的高度/宽度

- (IBAction)changeSize:(id)sender
{
  [self frameForImage:image inImageViewAspectFit:self.imageView];    
}

但是我希望它在我从相册中选择图像后立即执行此操作,这就是我设置它的方式。

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
  image = [info objectForKey:UIImagePickerControllerOriginalImage];
  [self.imageView setImage:image];
  [self frameForImage:image inImageViewAspectFit:self.imageView];
  [self dismissViewControllerAnimated:YES completion:NULL];
}
4

2 回答 2

32

自动布局解决方案

自从确定您在项目中使用自动布局后,我制作了一个演示应用程序来向您展示如何更改图像视图的图像并调整高度。自动布局会自动为您执行此操作,但要注意的是您将使用的照片来自用户图库,因此它们可能非常大而且这个。

所以看看这个应用程序:https ://bitbucket.org/danielphillips/auto-layout-imageview

诀窍是创建NSLayoutConstraint图像视图高度的参考。当您更改图像时,您需要在给定宽度的情况下将其常数调整为正确的高度。

您的其他解决方案可能是contentMode在您的图像视图上设置一个,通过使用UIViewContentModeScaleAspectFit您的图像将始终完整显示,但将被锁定到图像视图的边界,这可以根据您拥有的自动布局约束而改变。

初步答复

除非我遗漏了什么,否则您似乎真的把它复杂化了。

当您从图像选择器中获取新图像时,您需要做的就是根据UIImage大小更改图像视图的框架。

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
  image = [info objectForKey:UIImagePickerControllerOriginalImage];
  [self.imageView setImage:image];
  self.imageView.frame = CGRectMake(self.imageView.frame.origin.x
                                    self.imageView.frame.origin.y
                                    image.size.width
                                    image.size.height);
  [self dismissViewControllerAnimated:YES completion:NULL];
}

当然,这可能会非常大(它使用的原始图像可能非常大)。

所以让我们将宽度锁定为 280 点……这样我们就可以在纵向模式下始终在屏幕上显示完整的图像。

所以假设你的图像尺寸是 1000x800,而我们的图像视图可能是 280x100。我们可以计算保留图像视图宽度的图像视图的正确高度,如下所示:

CGSize imageSize        = CGSizeMake(1000.0, 800.0);
CGSize imageViewSize    = CGSizeMake(280.0, 100.0);

CGFloat correctImageViewHeight = (imageViewSize.width / imageSize.width) * imageSize.height;

self.imageView.frame = CGRectMake(  self.imageView.frame.origin.x,
                                    self.imageView.frame.origin.x,
                                    CGRectGetWidth(self.imageView.bounds),
                                    correctImageViewHeight);
于 2013-06-02T00:31:02.227 回答
5

这是一个 Swift 类,它将根据您选择的宽度或高度限制帮助返回正确的图像大小:

class func returnImageSizeForHeightLimit(heightLimit:CGFloat?, orWidthLimit widthLimit:CGFloat?, forImage theImage:UIImage)->CGSize?{

    if let myHeightLimit = heightLimit {

        let theWidth = (myHeightLimit/theImage.size.height) * theImage.size.width

        return CGSizeMake(theWidth, myHeightLimit)
    }

    if let myWidthLimit = widthLimit {

        let theHeight = (myWidthLimit/theImage.size.width) * theImage.size.height

        return CGSizeMake(myWidthLimit, theHeight)
    }

    return nil
}
于 2014-11-17T11:35:15.377 回答