当我尝试以下代码时:
text "Hello "
text "World"
他们在Hello之后立即在World而不是World上呈现Hello。我在一行上需要一些复杂的格式(突出显示,不同的字体大小等)。我知道:inline_formatting
选项存在,但似乎使用该选项太复杂了。
我有以下代码:
highlight_callback.rb:
class HighlightCallback
def initialize(options)
@color = options[:color]
@document = options[:document]
end
def render_behind(fragment)
original_color = @document.fill_color
@document.fill_color = @color
@document.fill_rectangle(fragment.top_left,
fragment.width,
fragment.height)
@document.fill_color = original_color
end
end
order.pdf.prawn:
highlight = HighlightCallback.new(:color => 'ffff00', :document => self)
#code....
text "Authorized Signature: "
formatted_text [{:text => "_" * 15, :callback => highlight }], :size => 20
正在生成附加图像。如何将签名行与文本放在同一级别?
答案 0 :(得分:2)
将方法text
更改为text_box
就足够了,即:
bounding_box([0, cursor], width: 540, height: 40) do
stroke_color 'FFFF00'
stroke_bounds
date = 'Date: '
text_box date, style: :bold
text_box DateTime.now.strftime('%Y/%m/%d'), :at => [bounds.left + width_of(date), cursor]
text_box "Signature ________________", align: :right
end
答案 1 :(得分:1)
要将文字放在准确的位置,您可以使用text_box
选项:at
。
您可以使用pdf.width_of(str)
获取文字的宽度(使用相同的样式选项:size
等,否则将使用默认设置进行计算)