当我尝试在wicked_pdf(wkhtmltopdf)生成的PDF中包含SVG时,它变成空白。知道如何让 svg 显示在 pdf 中吗?

应用程序/ View /条形码/to_pdf.html.haml

<descriptive text here>
%object#code_image{:data=>"/barcodes/generate_svg?code=4567898", :type=>"image/svg+xml", :height=>70}

条码 Controller
def generate_svg
  require 'barby'
  require 'barby/barcode/code_128'
  require 'barby/outputter/svg_outputter'
  barcode = Barby::Code128B.new(params[:code])
  render :text => barcode.to_svg({:height=>30, :width => 170})
end


def to_pdf
 render :pdf        => 'file_name'
end

最佳答案

我使用这种嵌入 SVG 的方法让它工作。

Display Inline SVG Using the Tag

代替



关于ruby-on-rails-3 - 使用 Wicked_PDF (wkhtmltopdf) 在 PDF 中嵌入 SVG,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7880079/

10-13 02:08