📄 freetypefont.h
字号:
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield * * This library is open source and may be redistributed and/or modified under * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or * (at your option) any later version. The full license is in LICENSE file * included with this distribution, and on the openscenegraph.org website. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * OpenSceneGraph Public License for more details.*/#ifndef FREETYPE_FONT#define FREETYPE_FONT 1#include <osgText/Font>#include <ft2build.h>#include FT_FREETYPE_Hclass FreeTypeFont : public osgText::Font::FontImplementation{// declare the interface to a font.public: FreeTypeFont(const std::string& filename, FT_Face face, unsigned int flags); FreeTypeFont(FT_Byte* buffer, FT_Face face, unsigned int flags); virtual ~FreeTypeFont(); virtual std::string getFileName() const { return _filename; } virtual osgText::Font::Glyph* getGlyph(const osgText::FontResolution& fontRes,unsigned int charcode); virtual osg::Vec2 getKerning(const osgText::FontResolution& fontRes, unsigned int leftcharcode,unsigned int rightcharcode, osgText::KerningType _kerningType); virtual bool hasVertical() const;protected: void setFontResolution(const osgText::FontResolution& fontSize); osgText::FontResolution _currentRes; std::string _filename; FT_Byte* _buffer; FT_Face _face; unsigned int _flags;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -