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 ...
5
votes
2answers
686 views

watermark existing pdf with ruby

Is there a way to watermark an existing pdf in ruby ? I want to add a dynamically generated text, Thanks,
5
votes
2answers
1k views

Can prawn generate PDFs with links?

I need to embed a link into a generated pdf in a ruby on rails app. Is there a way to do this with prawn? Reading about this it turns out that prawn-format was the answer for awhile, but 0.7.x broke ...
4
votes
2answers
290 views

How to replace a word in an existing PDF using Ruby Prawn?

-Hello Sandeep here. I am an apprentice to the Jedi Master Yoda. My master believes the force is strong in the Ruby community and has chosen me for a simple task to complete using the Ruby langauge: ...
3
votes
4answers
462 views

Rails PDF generating alternative to Prawn

I've been using Prawn to generate simple invoice PDFs. I now have the need to create a more complicated PDF document and Prawn is coming up short. I need to copy an existing layout precisely so ...
3
votes
2answers
364 views

Ruby: Prawn PDF out of memory when using the group method

I have a large number of products I want to display in a pdf, with category headers. If a category doesn't fit on the current page I want to move it to the next. For this I'm using Prawn's group ...
2
votes
2answers
125 views

Rails 3 and Prawn - HTML formatting doesn't works?

I opened Prawn's manual page and try to use HTML formatting in PDF document. Specifically, pdf.table([["Just <font size='18'>some</font> ...
2
votes
2answers
61 views

Why is Net::HTTP timing out when I try to access a Prawn Generated PDF?

I am using Prawn to generate a PDF from my controller, and when accessed directly at the url, it works flawlessly, I.E. localhost:3000/responses/1.pdf However, when I try to generate this file on the ...
2
votes
1answer
104 views

Generate PDF file after notification received from Paypal

I'm not being able to generate PDF file (using PRAWN) after the notification from Paypal is received. Am I missing something in my code ? Here's my code: order model : def paypal_encryption() ...
2
votes
0answers
166 views

RUBY+ PRAWN -Template::Error (can't convert nil into Float)

I'm using PRAWN to create pdf. I'm getting error on this line: pdf.text story.description.gsub(/<\/?[^>]*>/, ""), :size =>12 Any suggestion much appreciated.
2
votes
1answer
600 views

How do I define line height with Prawn when generating a pdf in rails app?

I am using prawn to generate a pdf. So far everything has been rather straight forward. I am having a problem defining the leading between lines of text. For example: when using a text_box ...
1
vote
1answer
92 views

Can I use highcharts in a pdf generate with prawn in Rails?

In my rails application, I use highcharts to display some charts. And now, I need to generate a pdf with charts (I will use prawn). I want to know if I can use highcharts in my pdf. Maybe with ExecJS ...
1
vote
1answer
84 views

How to store prawn PDF files into Amazon S3

I have a problem with the path. In my model I have following setup: class Pdffiles < ActiveRecord::Base belongs_to :user has_attached_file :invoice_file, :path => ...
1
vote
1answer
104 views

Error while inserting image in table using Prawn

I am working with Prawn to generate a pdf, I have to insert an image in a cell of a table. My code is like this: image = "path to file" subject = [["FORMATIVE I "," SUMATIVE ","GRAPH"], ...
1
vote
2answers
142 views

ruby prawn gem, table position

using prawn gem i display table in the pdf file.. now i want to set position of the table, please guide me how to work on this.. i used the following code to genrate pdf report, pdftable = ...
1
vote
1answer
167 views

No make_table method in Prawn::Document

I have a Rails 3 app that produces PDF documents using Prawn. In the Gemfile I have: gem "prawn", '= 0.12.0' gem 'prawn-layout' However, following the example at ...
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
2answers
855 views

Pdf generation with Rails 3

I need to generate PDFs with Rails 3.0.3. Prawn + Prawnto looks great as showed by Ryan Bates But I cannot make his example works, the table function is not recognized by the pdf variable Any ...
1
vote
1answer
523 views

Prawn templates not working

I´m trying this simple script: require 'prawn' template_file_name = File.join(File.dirname(__FILE__), 'template.pdf') pdf_file = Prawn::Document.new(:template => template_file_name) ...
1
vote
0answers
53 views

Is there Widow Orphan protection using Prawn for Ruby on Rails?

I have a question about using Prawn for Ruby on Rails. I'm using a bounding_box for variable length content. When the content overflows to the next page I would like to have some sort of ...
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
125 views

How to use rails routes in external classes?

I'm using prawn to generate pdfs, set up ala http://wiki.github.com/sandal/prawn/using-prawn-in-rails I'd like to access my routes so I can generate links in my pdfs, but now I'm not in a template ...
1
vote
2answers
513 views

Prawn PDF with Rails mailer?

I have successfully created an email that sends on creation of a Kase, but now I need to attach a PDF that is created on the fly by Prawn and Prawno. Basically when you visit a kase such as ...
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
1answer
1k views

Prawn & Prawnto Rails PDF generation - UTF-8?

I'm using ruby, prawn, and prawnto to dynamically generate pdf's containing text in other languages. I can't seem to get any text in languages with non-english characters to show up. It doesn't throw ...
1
vote
1answer
1k views

Table cell border

This is the 2x2 table I need to generate: r1c1 r1c2 r2c1 r2c1 ---- In other words I should print the bottom border of the bottom right cell. This is my code: show.pdf.prawn #This is a two ...
0
votes
1answer
46 views

Rails 3. How to setup Prawn with ActiveAdmin?

Has anybody been able to setup Prawn with ActiveAdmin? ActiveAdmin changes the controllers so where would you setup the show action for example?
0
votes
1answer
57 views

Rails 3 and Prawn in own action

I have the action my_pdfs and there I have followings: def my_pdfs respond_to do |format| format.pdf { render :layout => false } end end In the views/mycontroller is the file ...
0
votes
1answer
45 views

Can Prawn generate PDFs in CMYK format?

My client says that the generated PDFs must be in CMYK format. Can Prawn do this? I can't find the answer in the documentation.
0
votes
1answer
75 views

Error generating pdf using prawn

I am trying to use tags to give some styling for a pdf being generated using prawn. But, there seems to be an error. require 'rubygems' require 'prawn' require 'prawn/layout' require 'prawn/format' ...
0
votes
0answers
58 views

Dynamic prawnto template generation

I'm using prawn and prawn to for PDF-generation in my rails-app, it works fine. I'd like to offer a custom template for each user in my app, so each user can generate an individual "themed" PDF of ...
0
votes
1answer
123 views

How to save the prawn pdf on rails root without rendering

Here my code rendering pdf is ok .But I don't want render directly save to the rails folder how? Help me please respond_to do |format| format.html # show.html.erb format.xml { render :xml ...
0
votes
0answers
86 views

Saving pdf with prawn

I want to send pdf as attachment with email but should not render the pdf... my code respond_to do |format| format.html # show.html.erb format.xml { render :xml => @claim } format.report ...
0
votes
2answers
76 views

table generation issue in pdf generation using prawn

**I want to insert a table inside a parent table column.** e.g :- <table> <tr> <th> Type </th> <th> Rate </th> <th> ...
0
votes
0answers
37 views

PDF PRAWN: Change color intensity of PDF page

I have set an image background in all the PDF pages. Is it possible to change the color intensity of the pages from Prawn without making any changes to that background image itself. Any hint or ...
0
votes
2answers
247 views

Rails, Prawn - PDF show up in browser & etc

Fellas, I'm trying to master the prawn pdf gem. Ok, I'm far from the master lvl. I was able to make it generate a pdf. Every gem in the gemfile included: gem 'mysql', '~> 2.8.1' gem 'prawn', ...
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
156 views

PDF Prawn : Problem with image overriding the text

I want to put an image as a background on every page. This is my code : Prawn::Document.generate("#{Rails.root.to_s}/public/#{filename}.pdf", :page_size => [576,576], :left_margin => ...
0
votes
3answers
494 views

How to render PDF without use respond_to format.pdf in Rails?

How can I render send to a client a file (PDF, CSV, etc) without render this file? For example, imagine a Students controller (created using scaffold), we have 'new' form and 'create' action: def ...
0
votes
0answers
289 views

Watermarking with Prawn (using templates)

I have the following problem: I need to be able to watermark a document that was created from a template. I have the following code right now: (*note: The raw PDF text (body variable below) is sent ...
0
votes
1answer
148 views

How to indent a complete paragraph with Prawn?

Is it possible to indent a complete paragraph of text with Prawn? So not just the first line of a paragraph like :indent_paragraphs => some_number does? But all the text in that paragraph.
0
votes
2answers
174 views

call action from another action rails to save pdfs with prawn

I have an action to generate pdfs with prawn def savepdfs respond_to do |format| format.pdf {} # Create PDF file and saves in /pdf/print.pdf. logger.info "::::::::::::::::: PDF COVER PAGE ...
0
votes
1answer
160 views

Prawnto Initializer Block

I'm creating a simple PDF in Rails 3 using Prawn/Prawnto. I'm not sure if my issue is related to Prawnto or if it's just the way i'm doing it. The following code is in my view. This will ...
0
votes
2answers
751 views

Prawn. Styling cell object

How I can build Box with background color and custom text inside with latest version of Prawn ? In previous prawn version we had http://rubydoc.info/gems/prawn-layout/0.8.4/Prawn/Table/Cell with ...
0
votes
1answer
180 views

How to have different headers/footers for a big table in Ruby/Prawn?

I wanna generate a pdf with ruby and the prawn(0.8.4) gem. the first page of the pdf should have a different header/footer than the following pages. The data will be shown in a table, but the table is ...
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
0answers
159 views

Prawn - How to limit the text area on a form to match a fixed area on a Prawn PDF Report

We're building a Rails app which enables a user to make their own PDF booklet. On the PDF document there are fixed height sections for the user to complete via a web form. For example lets say the ...
0
votes
1answer
236 views

Prawn: css like overflow: hidden for bounding boxes with images

I want to clip an image if it goes beyond the dimensions of a bounding box. Just like how CSS overflow: hidden would do it. Eg. pdf.grid([0, 0], [3, 27]).bounding_box do pdf.image image_file end ...
0
votes
1answer
434 views

Formatting Tables in Prawn (this seems to be a common problem)

I"m having no luck formatting a table in a PDF served from a Rails action using Prawn. Here's the code, but it doesn't apply any of the formatting: p = Prawn::Document.new(:page_size => "A4") ...

1 2