1 Star 0 Fork 0

广州捷仓科技有限公司/gopdf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
kern_table.go 498 Bytes
一键复制 编辑 原始数据 按行查看 历史
oneplus1000 提交于 2016-04-21 18:18 . just remove some debug code
package core
//KernTable https://www.microsoft.com/typography/otspec/kern.htm
type KernTable struct {
Version uint //for debug
NTables uint //for debug
Kerning KernMap
}
//KernMap kerning map map[left]KernValue
type KernMap map[uint]KernValue
//KernValue kerning values map[right]value
type KernValue map[uint]int16
//ValueByRight get value by right
func (k KernValue) ValueByRight(right uint) (bool, int16) {
if val, ok := k[uint(right)]; ok {
return true, val
}
return false, 0
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jiecang-tech/gopdf.git
git@gitee.com:jiecang-tech/gopdf.git
jiecang-tech
gopdf
gopdf
v0.8.2

搜索帮助