FreeType:如何栅格化非填充轮廓

时间:2013-10-13 17:28:41

标签: c++ rendering freetype glyph rasterizing

我目前正在尝试创建只包含字形外边框的字形位图,内部没有任何填充。为此使用FreeType库。这是我的代码,类似于FreeType参考的示例2代码:

Spans outlineSpans;
FT_Stroker stroker;
FT_Stroker_New(ft, &stroker);
FT_Stroker_Set(stroker, outlineWidth, round ? FT_STROKER_LINECAP_ROUND : FT_STROKER_LINECAP_SQUARE, round ? FT_STROKER_LINEJOIN_ROUND : FT_STROKER_LINEJOIN_BEVEL, 0);

FT_Glyph g;
FT_Get_Glyph(currentFace->glyph, &g);
FT_Glyph_StrokeBorder(&g, stroker, 0, 1);

FT_Raster_Params params;
memset(&params, 0, sizeof(params));
params.flags = FT_RASTER_FLAG_AA | FT_RASTER_FLAG_DIRECT;
params.gray_spans = RasterCallback;
params.user = &outlineSpans;
outlineSpans.clear();
FT_Outline *o = &reinterpret_cast<FT_OutlineGlyph>(g)->outline;
int err = FT_Outline_Render(ft, o, &params);

FT_Stroker_Done(stroker);
FT_Done_Glyph(g);

结果我得到outlineSpans向量填充了整个字形图像的跨度,但我只需要“边框”进行栅格化。 CurrentFace->glyph包含我使用FT_Load_Char(currentFace, *ch, FT_LOAD_NO_BITMAP))加载的字形 我究竟做错了什么?感谢您的帮助,网上没有太多关于FreeType的文档/示例。

1 个答案:

答案 0 :(得分:0)

在解决方案下方共享如何使用轮廓字体,因为我只使用了它,这可能对您有帮助。

        FT_OutlineGlyph _oGlyph;
        struct Point{
            int x;
            int y;
        };

        vector<std::pair<int, int>> pointsPairVector;

        pointCount = _oGlyph->outline.n_points;

        for(int i = 0; i < pointCount; i++)
        {
            point.first = _oGlyph->outline.points[i].x;
            point.second = _oGlyph->outline.points[i].y;
            pointsPairVector.push_back(point)
        }
        //use Cairo to connect points in pointsPairVector