Tagged Questions

5
votes
2answers
658 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 ...
5
votes
6answers
1k views

Ruport vs. Prawn considering long-term use

I want to add reporting capabilities to my Rails application and I'm struggling quite some time now on which reporting software to use to create my PDF documents. Until now I'm pretty sure that ...
4
votes
5answers
4k views

Ruby 1.9.1 Load Path Craziness

Ok, I've just spent the 4 hours trying to figure this one out without success. I've tried all the usual suspects and googled every combination of ruby 1.9.1, load path, gems, mac os x,freebsd,prawn ...
3
votes
1answer
106 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
2answers
335 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 ...
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 ...
2
votes
2answers
90 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
51 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
2answers
267 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: ...
2
votes
1answer
201 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
0answers
164 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
261 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 ...
2
votes
1answer
574 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 ...
2
votes
1answer
1k views

Current Cursor Position when Using the Prawn Ruby Library

I'm using the Prawn Ruby library (http://prawn.majesticseacreature.com/) to generate some pdf documents. I draw a table without any problem. Next, I want to insert some lines after the table for ...
1
vote
1answer
143 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
1answer
63 views

How can I span tabular content across two pages using Prawn?

I have tabular content, basically one big table, that needs to span across both pages of an open book. So imagine that a book or catalog is open in front of you. Every time you turn a page, you will ...
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
80 views

Populate an new array from another array of symbols

I have a question about Ruby arrays but it's kind of hard to describe so I could not find much from reading other questions. Here it is. Currently I have the following code that works (part of ...
1
vote
1answer
488 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
1answer
644 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
2answers
2k views

Set the font color in prawn

Im using prawn to generate a PDF output in a rails app. How do i change the color of the outputted text?
0
votes
1answer
36 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
0answers
35 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
36 views

Why does a class variable work but an instance variable return nil when including a module in a class [Ruby]?

In the following code, why does the data variable work properly as a class variable but not an instance variable? (Note: I tried to simplify/reproduce only the necessary bits of the script to have the ...
0
votes
1answer
44 views

How to create rows dynamically using make_table in prawn pdf

Using Prawn, I need to create the rows of a table dynamically. I am working with make_table for that purpose. When I try the following way rows = "[\"val1\"],[\"val2\"]" test = ...
0
votes
1answer
68 views

How to use prawn on maglev

Being new to maglev I wanted to start with a small, but still useful example. So i decided to start moving the ruby classes I use to generate my invoices to maglev. However I ran in an unexpected ...
0
votes
1answer
44 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
72 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
1answer
91 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
1answer
113 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
77 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
1answer
33 views

Line not rendering

I am developing some prawn reports and running into an issue where any line I draw with a code like the following will render only in the last page. horizontal_line(0, 200, :at => y) It is ...
0
votes
2answers
141 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
0answers
275 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
137 views

PDF generating with prawn - How can I acces variable in Prawn.generate?

I'm trying to generate pdf using Prawn @buyer = Buyer.last Prawn::Document.generate("samle.pdf") do text "hello #{@buyer.name} world" end but this obviously doesn't work (only if I use class ...
0
votes
2answers
168 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
2answers
714 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
169 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
168 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
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
2answers
582 views

Draw formatted text inside a Table/Cell with Prawn

I am running Rails 3.0.1 with prawn-0.11.1.pre I just did some basic tests to see if I can get Prawn to create a simple table that includes some formatted text: data = ["Cell 1", ...
0
votes
1answer
112 views

How do you access your images folder from a controller?

I'm setting up Prawn right now and for one param it wants to know the img location. In their case they wrote : img = "#{Prawn::BASEDIR}/data/images/card_cutout.jpg" But that points to a local gems ...
0
votes
1answer
197 views

how to outline a font character in prawn / ruby (pdf)

I would like to draw a character (TTF) as vector and wondering how to perhaps draw the outline of the character. It appears that characters are "filled" with color suggesting the possibility to ...
0
votes
1answer
2k views

Setting cell/column widths on a Prawn table

I'm making a little script with ruby which produces a week schedule PDF file, using Prawn as a PDF library and I'm struggling with styling the table. I'd like to set a static width for all the columns ...
0
votes
0answers
483 views

how to include header and footer information on each page of a prawn pdf in rails [closed]

Possible Duplicate: header and footer in Prawn PDF how to include header and footer information on each page of a pdf in rails(prawn).How to identify the top of each page in a pdf.I need a ...
0
votes
3answers
366 views

Prawn gem: How to create the .pdf from an *existing* file (.xls)

Can anybody show me (maybe copy/paste a simple code example) how to create the .pdf file from an existing (.xls) file, using the Prawn gem? (Basically, I'd need the command that "opens" the existing ...
0
votes
1answer
918 views

Prawn image position

I'm trying to layout 6 images per page with prawn in Ruby: case (idx % 6) # ugly ...

1 2