热烈祝贺FreeType 2.13.0发布!我司提交代码已正式启用!
Posted 柳鲲鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了热烈祝贺FreeType 2.13.0发布!我司提交代码已正式启用!相关的知识,希望对你有一定的参考价值。
昨天无意中看到2.13.0正式发布,今天专门下载下来准备整合。
看了一下,欣喜的发现我司提交的代码已正式启用!一方面是我司技术力量强大的体现,另外也是为开源贡献自己的力量。
FT_EXPORT_DEF( void )
FT_GlyphSlot_Oblique( FT_GlyphSlot slot )
/* Value '0x0366A' corresponds to a shear angle of about 12 degrees. */
FT_GlyphSlot_Slant( slot, 0x0366A, 0 );
/* documentation is in ftsynth.h */
FT_EXPORT_DEF( void )
FT_GlyphSlot_Slant( FT_GlyphSlot slot,
FT_Fixed xslant,
FT_Fixed yslant )
FT_Matrix transform;
FT_Outline* outline;
if ( !slot )
return;
outline = &slot->outline;
/* only oblique outline glyphs */
if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
return;
/* we don't touch the advance width */
/* For italic, simply apply a shear transform */
transform.xx = 0x10000L;
transform.yx = -yslant;
transform.xy = xslant;
transform.yy = 0x10000L;
FT_Outline_Transform( outline, &transform );
以上是关于热烈祝贺FreeType 2.13.0发布!我司提交代码已正式启用!的主要内容,如果未能解决你的问题,请参考以下文章