0

CGContextDrawImage.Thanks を呼び出して、画像が回転する理由を教えてください。

// Initialization code
UIImage *img = [UIImage imageNamed:@"logo.png"];
UIImagePNGRepresentation(img);
_image_ref = img.CGImage;

// Drawing code
CGContextRef context = UIGraphicsGetCurrentContext();
CGRect img_rect = CGRectMake(20, 40, 100, 150);
CGContextDrawImage(context, img_rect, _image_ref);
4

2 に答える 2

2

Core Graphics の座標系は UIKit とは異なり、正しい座標を計算する必要があります。 http://blog.ddg.com/?p=10

于 2012-10-19T11:16:51.953 に答える