2

在我的应用程序中,我使用和图像视图来显示从数据库获取的图像

在数据库中图像具有不同的大小,

现在我添加了带有框架(10、10、300、220)的图像视图。

我需要根据图像大小调整图像视图框架的大小,就像 Aspect Fit.

我知道Aspect fit 可以调整大小,但它可以根据高度比改变宽度

但我需要根据宽度比增加高度

我需要宽度始终为 300,固定但需要更改高度

例如:

 if image size is 500x1000 i need to resize imageview as 300x600
 if image size is 400x600 i need to resize imageview as 300x450
4

2 回答 2

3

您可以使用以下代码片段来满足您的要求

-(UIImage *)adjustImageSizeWhenCropping:(UIImage *)image
{

    float actualHeight = image.size.height;

    float actualWidth = image.size.width;



    float ratio=300/actualWidth;
    actualHeight = actualHeight*ratio;

    CGRect rect = CGRectMake(0.0, 0.0, 300, actualHeight);
    // UIGraphicsBeginImageContext(rect.size);
    UIGraphicsBeginImageContextWithOptions(rect.size, NO, 1.0);
    [image drawInRect:rect];
    UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return img;


}
于 2013-09-13T07:27:37.983 回答
1
resizedImage = [self imageWithImage:originalImage scaledToSize:CGSizeMake(45,45)]; 

self.imageView.image = resizedImage;

- (UIImage*)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize 
{
    UIGraphicsBeginImageContext(newSize);

    [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
    UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return newImage;
}
于 2013-09-13T07:40:24.777 回答