RMagick:获取字形指标
我不知道如何使用 RMagick 获取给定字形的所有指标。
我知道有一个 get_type_metrics 方法可以给出基线、高度、上升、下降等,但我也想获取给定字形的 x 高度、大写高度、边界矩形等。这可能吗?
I can't find out how to get all metrics of a given glyph with RMagick.
I know there is a get_type_metrics method which gives the baseline, height, ascent, descent, etc, but I would also like to get the x-height, cap-height, bounding rectangle for a given glyph, etc. Is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,不,这是不可能的。 RMagick 是对 ImageMagick 库 的(很好)绑定,并且 ImageMagick 不提供您所请求的信息。
此示例中显示了唯一的ImageMagick 提供的字体规格信息:
这就是为什么
get_type_metrics< /code>
只返回它所做的信息。
Unfortunately, no, this is not possible. RMagick is a (nice) binding to the ImageMagick library, and ImageMagick does not provide the information you are requesting.
The only font metrics information available from ImageMagick is shown in this example:
This is why
get_type_metrics
only returns the information that it does.