ruby – Prawn PDF表混合格式

前端之家收集整理的这篇文章主要介绍了ruby – Prawn PDF表混合格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用prawn pdf在 ruby生成一个简单的表.

我需要一个单元格中的一些文本是粗体,有些不是粗体.例如:

现在,按照一些示例,我使用以下代码进行基本表格渲染:

pdf.table([
  ["1. Row example text","433"],["2. Row example text","2343"],["3. Row example text","342"],["4. Row example text","36"]],:width => 500,:cell_style => {
    :font_style => :bold})

但我完全没有办法用更多格式将更多文本插入第一个单元格. (在这种情况下,我希望它是无键的)

有谁知道怎么做到这一点?

谢谢你的帮助

解决方法

Prawn::Document.generate("test.pdf") do |pdf|
     table_data = [[Prawn::Table::Cell::Text.new( pdf,[0,0],:content => "<b>1. Row example text</b> \n\nExample Text Not Bolded",:inline_format => true),[Prawn::Table::Cell::Text.new( pdf,:content => "<b>2. Row example text</b>",:content => "<b>3. Row example text</b>",:content => "<b>4. Row example text</b>","36"]]

    pdf.table(table_data,:width => 500)
end

你也可以这样做

Prawn::Document.generate("test.pdf") do |pdf|
    table_data = [["<b>1. Row example text</b>\n\nExample Text Not Bolded","<b>433<b>"],["<b>2. Row example text</b>","<b>2343</b>"],["<i>3. Row example text</i>","<i>342</i>"],["<b>4. Row example text</b>","<sub>36</sub>"]]

    pdf.table(table_data,:cell_style => { :inline_format => true })
end

Prawn的inline_format支持< b&gt ;,< i>,< u>,< strikethrough>,< sub>,< sup>,< font>,< color>和< link>

原文链接:https://www.f2er.com/ruby/269062.html

猜你在找的Ruby相关文章