2017-01-24 12 views
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; 
} 

答えて

0

あなたのテキストを描画するには、コード

[l.text drawInRect:rect withAttributes:attributes]; 

を使用しています。指定したrectの四角形は、テキストの描画位置をコンテキストの座標(0,0がコンテキストの左上)で制御します。

テキストをコンテキストの中央に配置する場合は、あなたの文脈であれば、そこにテキストを中央に置くようにrectの原点を調整します。

私はあなたに数学を試してもらいます。それはほんの数行のコードに過ぎません。

+0

'rect.x = 119.5'と' rect.y = 340.5'です。それはラベルの座標です。なぜそれが左上にあるのか混乱しているのです。 @ダンカンC – Peter

関連する問題