views:

27

answers:

1

Hi,

what are the Rails plugin/gem solutions for converting a .xls file into a .pdf file?

Thanks a lot for any feedback!

Tom

A: 

I don't know of anything that will do it without shelling out some cash. You might be able to roll your own by combining the roo gem with the nice swanky pdfkit gem. The roo gem would allow you to read the contents of the excel file. You would then need to construct an html document and pass that to pdfkit which converts html to pdf. That is a little indirect, but should get the job done.

Geoff Lanotte