bounding_Box([175,starting_y - 190],:wIDth => 30.mm,:height => 17.mm) do stroke_color 'FFFF00' dash 10,space: 4 stroke_boundsend
我想单独为底部点缀边框,我将如何拥有它?
我尝试在中风,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,:at => x+wIDth horizontal_line x,x+wIDth,:at => y+height end stroke do stroke_color color dash 10,space: 4 horizontal_line x,:at => y endend
它输出
总结以上是内存溢出为你收集整理的ruby-on-rails – 无法在对虾中绘制边界框边框全部内容,希望文章能够帮你解决ruby-on-rails – 无法在对虾中绘制边界框边框所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)