标签: ruby fonts prawn
我正在尝试将多边形叠加在单倍间距字符的网格上。为了计算多边形的坐标,我需要知道单个字符的宽度。如何使用Ruby Prawn gem确定单个单行间距(Courier 12)字符的宽度?
答案 0 :(得分:9)
根据to this,Prawn中隐藏了一个width_of方法:
width_of
pdf.width_of(text, :size => 10)
Here是我能够挖掘的更多文档。就你的问题而言,我认为你会这样做:
pdf.width_of('a', :size => 12) #provided a was the single character in question