Ruby on Rails Export CSV Data to PDF

I implemented CSV export, and now I'm trying to export data to PDF.

How can I export CSV data from a CSV file to PDF.

Thank.

+3
source share
2 answers

You can use shrimp https://github.com/sandal/prawn to create pdf files in ruby ​​using some code:

require 'prawn'
pdf = Prawn::Document.new
pdf.text(my_csv_data)
pdf.render_file('csv.pdf')

There is also a tutorial here: http://railstips.org/blog/archives/2008/10/13/how-to-generate-pdfs-in-rails-with-prawn/

+4
source
0
source

All Articles