1

CTFrameGetLineOrigins を使用して、各行の起点を取得します。しかし、常に間違った行の原点を返します。

コード:

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetTextMatrix(context, CGAffineTransformIdentity);
CGContextTranslateCTM(context, 0, self.bounds.size.height);
CGContextScaleCTM(context, 1.0, -1.0);

CTFontRef font = CTFontCreateUIFontForLanguage(kCTFontUserFontType, self.font.pointSize, NULL);

CFAttributedStringSetAttribute(attrString, CFRangeMake(0, CFAttributedStringGetLength(attrString)), kCTForegroundColorAttributeName, self.textColor.CGColor);
CFAttributedStringSetAttribute(attrString, CFRangeMake(0, CFAttributedStringGetLength(attrString)), kCTFontAttributeName, font);

CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString(attrString);
CGPathRef path = CGPathCreateWithRect(CGRectInset(rect, TEXT_MARGIN, TEXT_MARGIN), NULL);
CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), path, NULL);

CFArrayRef lines = CTFrameGetLines(frame);
size_t numOfLines = CFArrayGetCount(lines);
CGPoint lineOrigins[numOfLines];
CTFrameGetLineOrigins(frame, CFRangeMake(0, 0), lineOrigins);
for (CFIndex i = 0; i < numOfLines; i++) {
    CTLineRef line = CFArrayGetValueAtIndex(lines, i);
    CFArrayRef runs = CTLineGetGlyphRuns(line);
    size_t numOfRuns = CFArrayGetCount(runs);

    for (CFIndex j = 0; j < numOfRuns; j++) {
        CTRunRef run = CFArrayGetValueAtIndex(runs, j);

        CGRect strFrame = CGRectZero;
        CGFloat width = 0;
        CGFloat height = 0;
        CGFloat leading = 0;
        CGFloat ascent = 0;
        CGFloat descent = 0;
        CFRange strRange = CTRunGetStringRange(run);
        CGFloat offsetX = CTLineGetOffsetForStringIndex(line, strRange.location, NULL);

        width = (CGFloat)CTRunGetTypographicBounds(run, CFRangeMake(0, 0), &ascent, &descent, &leading);
        width += leading;
        height = ascent + descent;
        NSLog(@"Line %ld : Offset Y: %f", i+1, lineOrigins[i].y);
        strFrame = CGRectMake(lineOrigins[i].x + offsetX + TEXT_MARGIN, lineOrigins[i].y + TEXT_MARGIN - descent, width, height);
        strFrame = CGRectIntegral(strFrame);
        CFDictionaryRef attr = CTRunGetAttributes(run);
        if (attr != NULL) {
            CFStringRef url = CFDictionaryGetValue(attr, kCTFontURLAttribute);
            if (url != NULL) {
                [self.wordsFrame addObject:[NSDictionary dictionaryWithObjectsAndKeys:(__bridge NSString *)url, @"URL", NSStringFromCGRect(strFrame), @"frame", nil]];
            }
        }
    }
}
CTFrameDraw(frame, context);

CFRelease(font);
CGPathRelease(path);
CFRelease(frame);
CFRelease(framesetter);

結果:

2012-05-30 12:58:21.464 hjday[9362:707] Line 1 : Offset Y: 97.000000
2012-05-30 12:58:21.466 hjday[9362:707] Line 2 : Offset Y: 68.000000
2012-05-30 12:58:21.472 hjday[9362:707] Line 3 : Offset Y: 39.000000

私のコードの何が問題なのか、誰か助けてもらえますか? または、各CTRunの起源を取得する他の方法はありますか?

4

1 に答える 1

3

わかった: strFrame = CGRectMake(lineOrigins[i].x + offsetX + TEXT_MARGIN, self.bounds.size.height - (lineOrigins[i].y + TEXT_MARGIN - descent) - height, width, height);

y座標を反転する必要があります

于 2012-05-31T02:57:55.057 に答える