在CTFrame中设置行间距

我正在使用一种QR码生成器,它是一个Mac应用程序。 我知道如何绘制文字,但我不知道如何设置线条间距。

我的代码:

// Prepare font
    CTFontRef font = CTFontCreateWithName(CFSTR("LucidaSansUnicode"), 16, NULL);

    // Create Path
    CGMutablePathRef gpath = CGPathCreateMutable();
    CGPathAddRect(gpath, NULL, CGRectMake(10, 0, pixelsWidth, pixelsHigh));

    CGContextSetTextDrawingMode (newcontext, kCGTextFill); 
    CGContextSetGrayFillColor(newcontext, 0.0, 1.0);

    // Create an attributed string
    CFStringRef keys[] = { kCTFontAttributeName };
    CFTypeRef values[] = { font };
    CFDictionaryRef attr = CFDictionaryCreate(NULL, (const void **)&keys, (const void **)&values,
                                              sizeof(keys) / sizeof(keys[0]), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
    CFAttributedStringRef attrString = CFAttributedStringCreate(NULL, stringCode, attr);
    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attrString);

    CTFrameRef theFrame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, CFAttributedStringGetLength(attrString)), gpath, NULL); 

    // Draw the string
    CTFrameDraw(theFrame, newcontext);

我一直在寻找,但我没有找到任何东西。 也许我必须使用CTLine?

更新:

好的,我发现了这个,但它不能解决我的问题,我想要小于0.0的行间距。

CTTextAlignment paragraphAlignment = kCTLeftTextAlignment;

    CGFloat maxLine = 0.0;

    CTParagraphStyleSetting setting[2] = {
        {kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment), &paragraphAlignment},
        {kCTParagraphStyleSpecifierLineSpacingAdjustment, sizeof(CGFloat), &maxLine}
    };

    CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(setting, 2);

尝试使用kCTParagraphStyleSpecifierLineHeightMultiple而不是kCTParagraphStyleSpecifierLineSpacingAdjustment 。 这对我有效。 请注意,1.0行距是1.2 * yourLineHeight。

链接地址: http://www.djcxy.com/p/14373.html

上一篇: Setting line spacing in a CTFrame

下一篇: How to get the real height of text drawn on a CTFrame