如何将矩形中的文本添加到 pdf
How to add text in a rectangle to a pdf
我正在生成具有特定格式的 pdf,其中我在以下代码的帮助下放置了一个矩形框...
CGContextRef context = UIGraphicsGetCurrentContext();
CGPathRef path = CGPathCreateWithRect(CGRectMake(40, rectPosition, 540, 150), NULL);
[[UIColor whiteColor] setFill];
//[[UIColor blackColor] setStroke];
CGContextAddPath(context, path);
CGContextDrawPath(context, kCGPathFillStroke);
CGPathRelease(path);
我实现了,但现在我想在矩形内设置文本,我尝试了 drawRect
方法和许多其他方法...如果有人知道,请提供帮助。
- (void)drawText:(CGFloat)xPosition yPosition:(CGFloat)yPosition canvasWidth:(CGFloat)canvasWidth canvasHeight:(CGFloat)canvasHeight
{
//Here you Can Write whatever you want to add in the rectangle
}
我正在生成具有特定格式的 pdf,其中我在以下代码的帮助下放置了一个矩形框...
CGContextRef context = UIGraphicsGetCurrentContext();
CGPathRef path = CGPathCreateWithRect(CGRectMake(40, rectPosition, 540, 150), NULL);
[[UIColor whiteColor] setFill];
//[[UIColor blackColor] setStroke];
CGContextAddPath(context, path);
CGContextDrawPath(context, kCGPathFillStroke);
CGPathRelease(path);
我实现了,但现在我想在矩形内设置文本,我尝试了 drawRect
方法和许多其他方法...如果有人知道,请提供帮助。
- (void)drawText:(CGFloat)xPosition yPosition:(CGFloat)yPosition canvasWidth:(CGFloat)canvasWidth canvasHeight:(CGFloat)canvasHeight
{
//Here you Can Write whatever you want to add in the rectangle
}