是否可以在Prawn中的bounding_
Box中
添加背景颜色?
bounding_Box([100,cursor],width: 80,height: 20) do
pad_top(7) { text "THIS IS TEXT",size: 8,align: :center }
stroke_bounds
end
Ive尝试将其添加到bounding_Box块
background_color: "CCCCCC"
我试过在块中添加它
fill_color "CCCCCC"
background_color "CCCCCC"
没有什么似乎与bounding_Box一起工作
这里的
代码
bounding_Box([200,:width => 350,:height => 80) do
stroke_color 'FFFFFF'
stroke_bounds
stroke do
stroke_color 'FFFF00'
fill_color '36DA5C'
fill_and_stroke_rounded_rectangle [cursor-80,350,80,10
fill_color '000000'
end
end
原文链接:https://www.f2er.com/ruby/271731.html