为了账号安全,请及时绑定邮箱和手机立即绑定

UIImage:调整大小,然后裁剪

UIImage:调整大小,然后裁剪

侃侃尔雅 2019-07-09 16:40:23
UIImage:调整大小,然后裁剪我已经对这张脸猛击了好几天,尽管我一直觉得自己正处在启示录的边缘,但我根本无法实现我的目标。我认为,在我设计的概念阶段之前,从iPhone的相机或库中获取图像,将其缩小到指定的高度,使用与侧面填充选项UIImageView(完全在代码中),然后割掉任何不符合通过的CGRect的内容。从相机或图书馆获取原始图像是微不足道的。事实证明,其他两个步骤是多么困难,我对此感到震惊。附图显示了我想要达到的目标。有人能帮我握住我的手吗?到目前为止,我发现的每一个代码示例似乎都会破坏图像,使之颠倒,看起来像垃圾,超出界限,否则就不能正常工作。
查看完整描述

3 回答

?
富国沪深

TA贡献1790条经验 获得超9个赞

我需要同样的东西-在我的例子中,选择适合的尺寸,一旦缩放,然后裁剪每一端,以适应其余的宽度。(我的工作是景观,所以可能没有注意到肖像模式的任何缺陷。)这是我的代码-这是UIImage上的一部份。我的代码中的目标大小总是设置为设备的全屏大小。

@implementation UIImage (Extras)#pragma mark -#pragma mark Scale and crop image- (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize{
    UIImage *sourceImage = self;
    UIImage *newImage = nil;    
    CGSize imageSize = sourceImage.size;
    CGFloat width = imageSize.width;
    CGFloat height = imageSize.height;
    CGFloat targetWidth = targetSize.width;
    CGFloat targetHeight = targetSize.height;
    CGFloat scaleFactor = 0.0;
    CGFloat scaledWidth = targetWidth;
    CGFloat scaledHeight = targetHeight;
    CGPoint thumbnailPoint = CGPointMake(0.0,0.0);

    if (CGSizeEqualToSize(imageSize, targetSize) == NO) 
    {
        CGFloat widthFactor = targetWidth / width;
        CGFloat heightFactor = targetHeight / height;

        if (widthFactor > heightFactor) 
        {
            scaleFactor = widthFactor; // scale to fit height
        }
        else
        {
            scaleFactor = heightFactor; // scale to fit width
        }

        scaledWidth  = width * scaleFactor;
        scaledHeight = height * scaleFactor;

        // center the image
        if (widthFactor > heightFactor)
        {
            thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5; 
        }
        else
        {
            if (widthFactor < heightFactor)
            {
                thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
            }
        }
    }   

    UIGraphicsBeginImageContext(targetSize); // this will crop

    CGRect thumbnailRect = CGRectZero;
    thumbnailRect.origin = thumbnailPoint;
    thumbnailRect.size.width  = scaledWidth;
    thumbnailRect.size.height = scaledHeight;

    [sourceImage drawInRect:thumbnailRect];

    newImage = UIGraphicsGetImageFromCurrentImageContext();

    if(newImage == nil)
    {
        NSLog(@"could not scale image");
    }

    //pop the context to get back to the default
    UIGraphicsEndImageContext();

    return newImage;}



查看完整回答
反对 回复 2019-07-09
?
沧海一幻觉

TA贡献1824条经验 获得超5个赞

旧的帖子包含用于调整UIImage大小的方法的代码。有关部分如下:

+ (UIImage*)imageWithImage:(UIImage*)image 
               scaledToSize:(CGSize)newSize;{
   UIGraphicsBeginImageContext( newSize );
   [image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
   UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
   UIGraphicsEndImageContext();

   return newImage;}

至于裁剪,我认为如果您改变方法来使用与上下文不同的缩放大小,那么您的结果图像应该被裁剪到上下文的边界上。


查看完整回答
反对 回复 2019-07-09
?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

+ (UIImage *)scaleImage:(UIImage *)image toSize:(CGSize)targetSize {
    //If scaleFactor is not touched, no scaling will occur      
    CGFloat scaleFactor = 1.0;

    //Deciding which factor to use to scale the image (factor = targetSize / imageSize)
    if (image.size.width > targetSize.width || image.size.height > targetSize.height)
        if (!((scaleFactor = (targetSize.width / image.size.width)) > (targetSize.height / image.size.height))) //scale to fit width, or
            scaleFactor = targetSize.height / image.size.height; // scale to fit heigth.

    UIGraphicsBeginImageContext(targetSize); 

    //Creating the rect where the scaled image is drawn in
    CGRect rect = CGRectMake((targetSize.width - image.size.width * scaleFactor) / 2,
                             (targetSize.height -  image.size.height * scaleFactor) / 2,
                             image.size.width * scaleFactor, image.size.height * scaleFactor);

    //Draw the image into the rect
    [image drawInRect:rect];

    //Saving the image, ending image context
    UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return scaledImage;}

我提议这个。她不漂亮吗?)


查看完整回答
反对 回复 2019-07-09
  • 3 回答
  • 0 关注
  • 665 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信