Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
5k views

header and footer in Prawn PDF

I have read through all relevant posts on Prawn but found no mentioning (even in Prawn's own documentation) of headers and footers. However, I did see a demo on Prawnto's own website about headers ...
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
665 views

Save a Prawn pdf as a Paperclip attachment

I'm using Prawn and Prawnto to display a PDF-based reports to the user, but in some circumstances, I'd also like to save the pdf as an attachment to one of my models. I'm using Paperclip for all of my ...
2
votes
1answer
198 views

problems updating to new version of prawn on production server with bundler

I have updated my code etc to work with the 0.10.2 version and its all working in development. When i deployed to my production server and done a bundle install i still get this errors? ...
2
votes
2answers
407 views

Rails Prawnto PDFs fail to download in Internet Explorer

I have a working Prawnto implementation, except for in IE versions 6 - 8. Here's my print method: prawnto :inline => false, :filename => @purchase.deal.name + "-" + ...
2
votes
3answers
782 views

Prawnto “Missing Template”

I've used Prawnto quite a bit in a few Rails projects. As I'm trying to integrate it into this project, I'm unable to get it working! I've installed the plugin, and the files are there: ...
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
1answer
83 views

Prawn: PDF generation with progress bar or spinner

I'm using prawn and prawnto for PDF-generation in my rails-app. Is there a way to show the user a spinner or progress bar while the PDF is generated?? I think about showing a spinner-div in the ...
1
vote
2answers
193 views

Prawn: static header with model specific information possible?

I'm building a PDF export function in Rails and Prawn where I want to export a number of "Companies" in one single PDF. A company usually flows over 2-3 pages. Right now when exporting a single ...
1
vote
2answers
806 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
173 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
2answers
225 views

prawnto and text format

Prawn/prawnto is cool stuff to generate pdf file. But I am not able to render formatted text exactly as they are. Prawn is rendering all the html tags <b>, <i>, <p> as string. Below is the ...
1
vote
1answer
398 views

How to set a Prawn::Table::Cell height?

I am using prawn to generate pdfs and I am having problems when setting the cell height, I set the height but nothing happens. I am using like this: mensagem_tabela = msg_nfe + "\n" + msg_numero + ...
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
999 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 ...
1
vote
5answers
978 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
30 views

Is it possible to mix solid and dashed cell border styles with Prawn?

I'm building a site with Ruby on Rails 3.1 where I also need to have PDF versions of certain data. For this I use Prawn (master) with the Prawnto gem. Works really well. However, there is just this ...
0
votes
1answer
55 views

Rubyonrails -generate Pdf using prawn.how to align table to center in pdf

In a ruby on rails application i have created pdf using prawn(o.12.0) and prawnto.In the pdf there is a table the issue is that i was not able to align the table to center. when am giving :align ...
0
votes
1answer
66 views

Ruby on rails -prawn & prawnto error

In a ruby on rails application prawn ,prawnto is used to generate pdf raises some error.. def generate_report generate_report = params[:report_type] # puts(generate_report) if generate_report ...
0
votes
0answers
34 views

Error in RoR prawnto plugin installation on Windows

Error in installation of RoR prawnto plugin in windows. Please let me know how it can be installed in windows. I tried with the commands like: script/plugin install ...
0
votes
2answers
42 views

can't access ActiveRecord mutators in a block

I am inside a Rails controller and I am trying to access my instance variable in a block: This gives an error saying that "no method field1 for Nil": Prawn::Document.generate("hello.pdf") do ...
0
votes
0answers
51 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
121 views

Prawnto won't display pdf inline

I'm trying to use prawn and prawnto (both installed via gems) in order to generate pdf's for my app. I want the pdf to display in the browser, but it won't, it automatically downloads instead. I have ...
0
votes
2answers
197 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
3answers
196 views

How 2 make a Bold Header a Prawn Table

I'm using Prawn and need to make the Header row bold but I can't find any solution in the API. Here you can see my current table with normal text Headers pdf.table (Data, :header => true) ...
0
votes
0answers
146 views

prawn table with 2 models

i have this in show.pdf.prawn CommercialOffer.find(params[:id]).devices.each do |device| device.name device.prices.each do |price| price.price price.quantity ...
0
votes
2answers
167 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
157 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
1answer
379 views

Streaming output from Prawn/Prawnto in Rails before render

Does anyone have any examples of starting the file stream before the rendering/building process when using Prawn? The situation is that I have a report of 350 or so pages that takes about 60 seconds ...
0
votes
1answer
159 views

How do I specify a response format based on a form option in Rails 3.0.x

Environment: Rails 3.0.4 and Ruby 1.9.2 I have the following form: <%= form_tag( {:action => 'show', :format => :pdf}, :method => :post) do %> .. list of items ... <%= submit_tag ...
0
votes
1answer
223 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
269 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
2answers
450 views

multi-line footer in Prawn PDF

I have footer text that may be more than one line, the length of the text will vary depending on the user's name and the company they work for. Like all footers, it needs to be displayed below the ...
0
votes
1answer
374 views

setup for prawn, prawnto on heroku

I'm trying to use prawn, prawnto for generating pdfs in a rails application hosted on heroku. But I'm struggling on the setup. Is it possible to use prawn, prawnto on heroku? Is there a guide ...
0
votes
2answers
670 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
761 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 ...
0
votes
1answer
322 views

Problems with Prawnto options

I'm using Prawnto to generate PDFs in my Rails app. I want three specific options set for my PDFs: I don't want it to start with a blank page I want it to download directly (not inline) I want to ...
0
votes
1answer
2k views

Using Prawn & Prawnto for Rails PDF generation

This is probably more a design or usage question but the main issue is using the Prawn plugin with Rails 2.3.4 and accessing the resulting PDF object to render it to a file. The scenario is ...
-1
votes
1answer
62 views

“rails plugin install git://github.com/thorny-sun/prawnto.git” is not working in rails 3.0.6

I want to install prawnto plug-in in my rails 3.0.6 application but when i fire the command as given here rails plugin install git://github.com/thorny-sun/prawnto.git it gives me result as given ...