0
私はUIImage
にテキストを描画しようとしています。このメソッドは機能しますが、テキストはオフです。私は*l
ラベルをフレームの中央に持っています。 self.image = [self drawText]
の後、テキストは画像の左上隅にあります。UIImageにテキストを追加...間違った場所
-(UIImage*) drawText{
UIGraphicsBeginImageContextWithOptions(_creatorImageView.image.size, false, _creatorImageView.image.scale);
[_creatorImageView.image drawInRect:CGRectMake(0,0,_creatorImageView.image.size.width, _creatorImageView.image.size.height)];
NSLog(@"Caption ARRY: %@", _creatorImageView.captionArray);
for (UILabel *l in _creatorImageView.captionArray){
NSLog(@"%f %f", l.frame.origin.x, l.frame.origin.y);
CGRect rect = CGRectMake(l.frame.origin.x, l.frame.origin.y, _creatorImageView.image.size.width, _creatorImageView.image.size.height);
[l.textColor set];
CGFloat radians = atan2f(l.transform.b, l.transform.a);
CGFloat degrees = radians * (180/M_PI);
//CGContextConcatCTM(UIGraphicsGetCurrentContext(), CGAffineTransformMakeScale(l.transform.tx, l.transform.ty));
//CGContextConcatCTM(UIGraphicsGetCurrentContext(), CGAffineTransformMakeRotation(degrees));
//NSMutableParagraphStyle *paragraphStyle = [NSMutableParagraphStyle new];
//[paragraphStyle setLineBreakMode:NSLineBreakByWordWrapping];
//[paragraphStyle setAlignment:NSTextAlignmentCenter];
NSDictionary *attributes = @{ NSFontAttributeName: l.font,
NSForegroundColorAttributeName: l.textColor,
NSBackgroundColorAttributeName: l.backgroundColor};
//NSParagraphStyleAttributeName:paragraphStyle};
[l.text drawInRect:rect withAttributes:attributes];
NSLog(@"TEXT: %@", l.text);
}
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
'rect.x = 119.5'と' rect.y = 340.5'です。それはラベルの座標です。なぜそれが左上にあるのか混乱しているのです。 @ダンカンC – Peter