maxsem/hiero
Composer 安装命令:
composer require maxsem/hiero
包简介
Egyptian hieroglyphic text to SVG renderer
README 文档
README
Installation
composer install maxsem/hiero
Fonts
To render something, you need a font, which for this package is a set of SVG files along with some metadata. You can make one out of a TTF font:
bin/build-font.php path/to/font.ttf destination/dir
You'll need Python and FontForge module for it to export SVGs from fonts.
Usage
$tokenizer = new Tokenizer(); $parseOptions = new ParseOptions( throwOnErrors: true, // See #Error handling logErrorBacktraces: false, // See #Error handling ); $parser = new Parser($tokenizer, $parseOptions); $renderOptions = new RenderOptions( throwOnErrors: true, // See #Error handling logErrorBacktraces: false, // See #Error handling color: 'black', // Hieroglyph color: valid CSS color or null to not set and default to black. background: 'white', // Background: CSS color or null for transparent. // Content of rendered SVG's <style> tag or null to not set. Will be overridden by the options above. style: ".cartouche { color: red }\n" // color the cartouche red . '.glyph { color: black }', // But keep the hieroglyphs inside black ); $font = Font::fromPath('path/to/font'); // Or $font = Font::fromComposerPackage('package/name'); $renderer = new Renderer($renderOptions, $font); $parseOuptut = $parser->parse('< A1\-B1 >');
Error handling
All errors specific to the package are instanceof HieroException. For problems related to user input, both parsing and rendering stages can be configured to either throw exceptions or return a list of Error objects.
If configuerd to throw exceptions, descendants of LocalizableException will be thrown.
All these errors contain an error code and an optional list of parameters that can be fed into an external localization framework.
See the ErrorCodes class for possible codes.
Development
- If it isn't tested, it doesn't work.
- Prefer immutable data classes with readonly properties to getters an setters.
- Run all the tests with
make. - Minimum supported PHP version is the one used by Wikimedia wikis.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-07-10