gpt4 book ai didi

ruby-on-rails - 无法在 Prawn 中绘制边界框边框

转载 作者:数据小太阳 更新时间:2023-10-29 07:37:25 24 4
gpt4 key购买 nike

如何使用特定设置在边界框周围绘制边框

bounding_box([175, starting_y - 190], :width => 30.mm, :height => 17.mm) do
stroke_color 'FFFF00'
dash 10, space: 4
stroke_bounds
end

我想单独为底部点缀边框,我怎么会有这个?

我尝试在 Prawn 文档的stroke, stroke_bounds, bounding_box中搜索,我找不到任何东西

最佳答案

你可以单独画线:

require "prawn"

Prawn::Document.generate("bbox.pdf") do
x = 175
y = 200
width = 100
height = 50
color = 'FFFF00'

stroke do
stroke_color color
vertical_line y, y+height, :at => x
vertical_line y, y+height, :at => x+width
horizontal_line x, x+width, :at => y+height
end

stroke do
stroke_color color
dash 10, space: 4
horizontal_line x, x+width, :at => y
end
end

输出

enter image description here

关于ruby-on-rails - 无法在 Prawn 中绘制边界框边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41329753/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com