2

UIImageの角を丸めるために次のコードをテストしています。

- (UIImage *)makeRoundedImage:(UIImage *)image radius:(float)radius;
{
    CALayer *imageLayer = [CALayer layer];
    imageLayer.frame = CGRectMake(0, 0, image.size.width, image.size.height);
    imageLayer.contents = (id) image.CGImage;

    imageLayer.masksToBounds = YES;
    imageLayer.cornerRadius = radius;

    UIGraphicsBeginImageContext(image.size);
    [imageLayer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *roundedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return roundedImage;
}

生成された画像をよく見ない限り、私は元気に見えます。角が滑らかではありません。どうすればコーナーをより滑らか/柔らかくすることができますか?

編集:

クォーツの角が丸い処理済み画像:

ここに画像の説明を入力してください

あなたが見ることができるように、角は滑らかではありません。

これは、UIImageViewのcornerRadiusがはるかにスムーズなバージョンです。

ここに画像の説明を入力してください

キャッチはどこにありますか?

4

1 に答える 1

5

UIImage カテゴリは次のとおりです。

- (UIImage *) imageWithRoundedCornersRadius: (float) radius
{
    // Begin a new image that will be the new image with the rounded corners
    UIGraphicsBeginImageContextWithOptions(self.size, NO, 0);

    // Add a clip before drawing anything, in the shape of an rounded rect
    CGRect rect = CGRectMake(0, 0, self.size.width, self.size.height);
    [[UIBezierPath bezierPathWithRoundedRect:rect cornerRadius:radius] addClip];

    // Draw your image
    [self drawInRect:rect];

    // Get the image, here setting the UIImageView image
    UIImage *roundedImage = UIGraphicsGetImageFromCurrentImageContext();

    // Lets forget about that we were drawing
    UIGraphicsEndImageContext();

    return roundedImage;
}
于 2012-12-28T15:37:02.660 に答える