Я пытаюсь нарисовать текст на 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'. Это координаты метки. Вот почему я смущен, почему он находится в верхнем левом углу. @Duncan C – Peter