Tagged Questions
5
votes
3answers
5k views
Generate pdf from Rails 3 - what tool to choose?
I need to be able to render some views as PDFs from a Rails 3 project. I've never before used PDF generation techniques with ruby/rails, so I researched a few popular approaches such as Prawn and ...
3
votes
1answer
113 views
Convert HTML form to PDF
How do I convert a html form to PDF. I would like to use Prawn for the purpose.
Pointing to any relevant links or examples would be very helpful.
3
votes
3answers
1k views
Prawn html formatting
I have some simple lists and bold/italic text to format with prawn. How do I get prawn to pay attention to the html tags instead of just displaying them explicitly.
If prawn can't do this, what are ...
3
votes
3answers
3k views
PDF generation with Prawn and Prawnto
Is anyone using Prawn / Prawnto with Jruby on rails? I installed prawn 0.5.01 and rails 2.3.2. I just installed prawn and prawnto and started playing with the PDF generation capabilities. I am ...
2
votes
2answers
477 views
How to set prawn pdf filename in Ruby on Rails?
What i have is the controller action responding to html and pdf file format like this:
def detail
@record = Model.find(params[:id])
respond_to do |format|
format.html # ...
2
votes
1answer
654 views
how do I set margins in Prawn in ruby?
This is what I have so far, but I need to set margins:
def send_fax
22 contact = Contact.find_by_id(self.contact_id)
23
24 pdf = Prawn::Document.new
25 pdf.font "Times-Roman"
...
2
votes
1answer
271 views
Generating PDF's with signatures using Ruby or Ruby on Rails
I'm working on a Rails application that uses prawn to generate PDF's. Long story short, we want to be able to digitally sign generated PDF's. Im not sure where to start reading up exactly. Just wanted ...
2
votes
3answers
1k views
prawnto displaying tables that don't break when new page
I have a variable number of tables with variable number of rows and I want to have them displaying one after the other but if a table doesn't fit on the current page put it on the next then continue ...
1
vote
2answers
2k views
How to fix “error exists on this page” PDF error from prawn generated documents?
I'm generating PDFs in my Rails application using the Prawn PDF library. Everything is working great, but when opening the resulting PDF in Acrobat or Acrobat Reader the message below is shown:
...
1
vote
1answer
269 views
How to set two diferent font style in one single line with prawn in Ruby on Rails generating a PDF file?
I have the following code:
pdf = Prawn::Document.new
pdf.text "Hello", :size => 22
pdf.text "wold", :size => 12
But this code displays two lines.
I want to have the two text elements ...
1
vote
1answer
189 views
Using whole space of pdf file
I am using prawn to create pdf file but it always leaves some spaces/margins around the page. Can't we use whole space of the pdf file not leaving any margins around?
Thanks !!!
1
vote
3answers
275 views
Prawn PDF and empty database cells?
I am using Prawn PDF to create PDF files on the fly in my Rails application.
I recently came across the rails cell.blank? function, which has proved to be really handy, I can hide any <li> rows ...
1
vote
1answer
653 views
prawn PDF: I need to generate nested tables
I need a table where rows are actually 2 rows tables, a nested table that is..
How can I do that in prawn? Maybe I need an extension.. but which one?
1
vote
5answers
1k views
Rails PDF Generation with Prawn in IE7
I'm using Prawn and Prawnto to generate a PDF in a Ruby on Rails app (Rails version 2.2.2) which works great and generates PDFs happily and sends them to the user to download in Firefox.
The problem ...
0
votes
1answer
109 views
Unordered list in the prawn view
I have a Rails application where the user can insert text with a WYSIWYG-Editor.
The customer wants now to be able to insert lists.
But the output of the Text appears with no list just escaped ...
0
votes
2answers
229 views
Build a PDF from a template in Ruby on Rails
I would like to create a template in doc, pdf, odt, docx ... document type does not matter.
What I want is to get this document, change some values and convert this document to PDF.
For example:
...
0
votes
2answers
159 views
Ruby: parse csv data to pdf
I am using prawn gem to generate pdf document
how one can parse data from csv to pdf
i have used the code some thing like this
Prawn::Document.generate("user.pdf", :page_layout => :landscape) do
...
0
votes
2answers
169 views
Put data in specific header
headers = ["05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22"]
data = ["05:01", "05:23", "05:43", "06:03", "06:33", "06:53", "07:03", "07:23", ...
0
votes
2answers
907 views
How can I do inline formatting (bold and underline) for PDF generated by Prawnto in Rails?
I generate a PDF file using Prawn and the Prawnto plugin in my rails application.
I create a standard form with a standard textarea, and submit that as the body of the PDF file.
However, I need to ...
0
votes
1answer
283 views
How can I setup a user-defined template in prawn - prawnto?
I'm using prawn with prawnto in a rails 3 application to generate some pdf's. I have created a pdf.prawn template for a specific controller's action, and it is working fine.
I have the following code ...
0
votes
1answer
607 views
Rails and Prawn PDF - add current item ID to filename?
I have two PDFs that are made "on the fly" using Prawn PDF.
The PDFs are called jobsheet.pdf and discharge.pdf - their URLs are:
railsroot/kases/IDNO/jobsheet.pdf
railsroot/kases/IDNO/discharge.pdf
...
0
votes
2answers
690 views
Wrap text around an image in rails and prawn
I have a document with dynamic image and dynamic text and would like the text around the image. The image is right aligned on the landscape page. Here is what I have so far:
...
0
votes
1answer
474 views
How to generate table of contents with prawn?
Is there an easy way to generate table of contents with links to corresponding pages?
0
votes
1answer
787 views
ruby prawn how to wrap text around an aligned right image?
s it posible to align an image to the right and wrap text around the image like it is in html and css using the float:right property ?
If so how do you do this ?
I can align an image but dont't ...