[CALayer renderInContext:]を使用してUIImageにレンダリングしようとしているUIViewがあります。しかし、結果の画像が垂直方向に反転していることがわかりました。座標系が違うので、これはちょっと期待しています。ただし、その後、アフィン変換を使用してコンテキストを通常の状態に戻そうとしますが、効果はありません。
CGAffineTransform flipVertical = CGAffineTransformMake(
1, 0, 0, -1, 0, imageContextHeight
);
CGContextConcatCTM(imageContext, flipVertical);
CGImageRef cgImage = CGBitmapContextCreateImage(imageContext);
UIImage* uiImage = [[UIImage imageWithCGImage:cgImage] retain];
CGImageRelease(cgImage);
私は何が間違っているのですか?
CTMは将来の描画に影響します。すでに描いたものをキャプチャしています。描画後ではなく、描画前にその変換を連結する必要があります。
これは、誰かに役立つ場合に備えて、この回答に基づいて作成したコードです。
#import <QuartzCore/QuartzCore.h>
...
+ (UIImage *) flipImageVertically:(UIImage *)originalImage {
UIImageView *tempImageView = [[UIImageView alloc] initWithImage:originalImage];
UIGraphicsBeginImageContext(tempImageView.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGAffineTransform flipVertical = CGAffineTransformMake(
1, 0, 0, -1, 0, tempImageView.frame.size.height
);
CGContextConcatCTM(context, flipVertical);
[tempImageView.layer renderInContext:context];
UIImage *flipedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[tempImageView release];
return flipedImage;
}
これは上記と同じコード(benvolioTの答え)ですが、Swift 4.0
import QuartzCore
...
func flipImageVertically(originalImage:UIImage) -> UIImage{
let tempImageView:UIImageView = UIImageView(image: originalImage)
UIGraphicsBeginImageContext(tempImageView.frame.size)
let context:CGContext = UIGraphicsGetCurrentContext()!
let flipVertical: CGAffineTransform = CGAffineTransform(a: 1, b: 0, c: 0, d: -1, tx: 0, ty: tempImageView.frame.size.height)
context.concatenate(flipVertical)
tempImageView.layer.render(in: context)
let flippedImage:UIImage = UIGraphicsGetImageFromCurrentImageContext()!
UIGraphicsEndImageContext()
return flippedImage
}
そして、これがSwiftのさらに良い方法です:
func flipImageVertically(originalImage:UIImage) -> UIImage {
let image:UIImage = UIImage(CGImage: originalImage.CGImage, scale: 1.0, orientation: UIImageOrientation.RightMirrored)!
return image
}
スウィフト4:
let flipVertical = CGAffineTransform(a: 1, b: 0, c: 0, d: -1, tx: 0, ty: originalImage.size.height)
ctx.concatenate(flipVertical)
この関数をSwift 4:
func drawImage(image: UIImage) -> UIImage {
// Setup our context
let opaque = false
let scale: CGFloat = 0 // 0 means we use scale factor of the device’s main screen.
UIGraphicsBeginImageContextWithOptions(image.size, opaque, scale)
let context = UIGraphicsGetCurrentContext()!
let flipVertical = CGAffineTransform(a: 1, b: 0, c: 0, d: -1, tx: 0, ty: image.size.height)
context.concatenate(flipVertical) // flip by y
// draw your another figures
//...
// Drawing complete, set context to image and finish
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image!
}
私はSwiftでこのコードを使用します:
UIGraphicsBeginImageContextWithOptions(myImageView.image!.size, false, 1.0)
var context = UIGraphicsGetCurrentContext()
//move and invert canvas by scaling
CGContextTranslateCTM(context, myImageView.image!.size.width, 0)
CGContextScaleCTM(context, -1, 1)
myImageView.image!.drawInRect(CGRect(x: 0, y: 0, width: myImageView.image!.size.width, height: myImageView.image!.size.height))
// move back and reinvert
CGContextScaleCTM(context, 1, 1)
CGContextTranslateCTM(context, -myImageView.image!.size.width, 0)
let flippedImg = UIGraphicsGetImageFromCurrentImageContext()
myImageView.image = flippedImg
UIGraphicsEndImageContext()