1. ホーム
  2. iphone

[解決済み] UIImage。リサイズ、そしてクロップ

2022-04-14 22:37:41

質問

もう何日もこの問題に直面しているのですが、常に天啓を受ける寸前だと感じているにもかかわらず、目標を達成することができません。

iPhoneのカメラやライブラリから画像を取り込んで、指定した高さに縮小するのは簡単なことだと、デザインのコンセプトの段階で考えていました。 アスペクトフィル UIImageViewのオプションを(すべてコードで)設定し、次に クロップオフ 渡されたCGRectの範囲に収まらないものは、すべて。

カメラやライブラリから元画像を取得するのは簡単なことでした。他の2つのステップがいかに困難であったかに、私はショックを受けています。

添付の画像は、私が達成しようとしているものです。どなたか親切な方、私の手を握っていただけませんか?私がこれまでに見つけたすべてのコード例は、画像が壊れ、上下が逆さまになり、ひどい有様になり、境界外を描画し、さもなければただ正しく動作しないようです。

解決するには?

私も同じことが必要でした。私の場合、一度拡大縮小して収まる寸法を選び、両端をトリミングして残りを幅に合わせることです。(私は横向きで作業しているので、縦向きでは不備に気づかなかったかもしれません)。 以下は私のコードです。これは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;
}