Prawn is a fast, nimble Ruby library for creating PDF files.
1
vote
0answers
7 views
prawn repeat template filling with different content
I have a 4-page template for my PDF I would like to generate with prawn. I need to repeat this template in my pdf a number of times each time filling it with different content.
If I use:
...
0
votes
0answers
8 views
prawn unicode characters rendering
I am trying to use prawn to generate PDF with Unicode characters. I checked that Arial font from corefonts package contains required characters, registered it, and chosen as default font:
font_path ...
0
votes
0answers
17 views
Ruby: gem Prawn: print wraps and goes upside down
I tried the example in watermark existing pdf with ruby, but when I printed generated document, the "WATERMARK" was printed upside down, almost as if it got to the end of the paper, folded over and ...
0
votes
1answer
27 views
Unable to get PDF with images from Prawn PDF in a Node.js webapp
Am using Prawn PDF in a node.js webapp to generate PDF on the fly and send it back to the user. It works fine as long as there are no images in the PDF doc. The moment I include an image (png or jpeg) ...
0
votes
0answers
19 views
Looping through a serialized array in a Prawn pdf
I have a Payment model, and each payment contains an array of Items.
The items are saved as a serialized array in a string column of the Payments table.
I have set up the serializing in payment.rb ...
0
votes
1answer
25 views
Sinatra: Template engine not found: prawn
I'm a newbie with Sinatra and prawn. I succeeded with erb and xmm/builder templates. Now trying to get pdf generation with prawn working.
Error received: Template engine not found: prawn
Code:
...
0
votes
0answers
28 views
wysihtml5 input exported to prawn pdf
I have a rails (3.2.12) form that has 5 separate textarea inputs saved to a mysql database using wysihtml5. I am trying to take that data and generate a pdf.
I am looking for ideas on how to do this ...
2
votes
0answers
56 views
Why does Prawn resize my image automatically?
When I try to insert an image (PNG at 72dpi) using Prawn, like this:
image "#{Rails.root}/public/images/pdf/logo.png"
Prawn inserts the image but scales it up by about 30% which makes it blurry ...
0
votes
0answers
34 views
Changing column widths for custom table in prawn pdf
I'm currently revamping a PDF document that gets generated by prawn pdf and I need to specify explicit column widths for a custom table. Here is the function:
def combo_table(*args)
pdf = ...
0
votes
2answers
39 views
Render SVG Tag in PDF
I want to render a signature in a pdf.
my html code:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<path stroke="navy" stroke-width="2" fill="none" d="<%= @image %>"/>
...
0
votes
1answer
61 views
rails + prawn (with grid) how can I update this pdf layout to have a block only on first page?
I have the following prawn document layout
define_grid(:columns => 5, :rows => 8, :gutter => 10)
repeat(:all) do
draw_text "bottom-left - text on all pages", :at => ...
0
votes
1answer
53 views
How do I format and style a sub table in Prawn?
I'm new to generating PDF's with Prawn so this may be a simple question but it's driving me crazy!
I have a table with a nested sub table. I have been able to style and format the main table easily ...
0
votes
1answer
32 views
Prawn doesn't seem to push layout down when using repeat(:all)
I am generating a document with data that flows onto each subsequent page, each page has a standard header. However, when I use repeat(:all) to put the header on each page, I find that on every page ...
0
votes
1answer
21 views
horizontal scroll in PDF generated using PDF Prawn
I have generated a PDF using prawn. Issue is when I add more columns to the table, the pdf does not show horizontal scroll bar. Thus I am not able to see the column added to the right.
Has anyone ...
0
votes
1answer
61 views
Adding currency unit in Prawn PDF? (syntax error)
I'm working on a PDF invoice using Prawn PDF. I am trying to use number_to_currency whilst passing the unit.
def line_item_rows
[["Description", "Qty", "Unit Price", "Price GBP"]] +
...
0
votes
1answer
49 views
Prawn PDF - How to get the height of a text box
I have a formatted_text_box that contains dynamic text. It seems like the box just expands nicely when not given specific dimensions.
The problem is it doesn't seem to move the cursor to the bottom ...
0
votes
0answers
123 views
Prawn not working in Production
Prawn is working fine in development environment. But in production im getting these logs and keeps looping without loading the app,
...
19x.xxx.xxx.xxx: Connecting to database specified by ...
0
votes
0answers
71 views
Prawn produces blank page when generating PDF from images
I'm attempting to generate a PDF from a directory with a bunch of images in it using Prawn. The code I have so far works perfectly, with only one small problem, it inserts a blank page at the ...
0
votes
1answer
74 views
Replace some text in a PDF template using Prawn in Ruby
I am generating a PDF in Prawn using a template using code similar to:
Prawn::Document.new(:template => "template.pdf")
This works great, and I can add to the document in the normal way - ...
0
votes
1answer
100 views
PDF (Prawn) : Generate tables without Prawnto
For some permission restriction, I can't install prawnto gem to my server. I used the method of http://blog.idyllic-software.com/blog/bid/204082/Creating-PDF-using-Prawn-in-Ruby-on-Rails to generate ...
0
votes
3answers
135 views
Footer in each page is not working (Prawn PDF) in rails 3.2
I have prawn gem installed in my rails 3 application.
I wonder why my footer isn't working in each page.
It is only working at the end of the last page.
Here is my code:
( I am very new to Prawn )
...
0
votes
0answers
103 views
Rails app - passing updated instance variable values to prawn after AJAX form submit
I have a static page in my Rails application where a user can select two dates in a form and then an income statement will generate based on those two inputs. This works fine. However, on that same ...
2
votes
1answer
146 views
DEPRECATION WARNING: You're trying to create an attribute `info', in Rails 3.2.8
I am trying to add pdf generation through Prawn to my Rails 3 app. I am following the Railscast and all was going well until I try to pass an instance variable from my controller to a separate class I ...
0
votes
1answer
103 views
Display paperclip image in Prawn PDF
I'm trying to display an image from the database that was imported by paperclip. I have tried several things but I keep getting an error message that "File not found".
Here is what I have in my prawn ...
1
vote
2answers
49 views
I just want to write a simple µ in Ruby and Prawn
my head is on the edge of exploding...
How can I encode my string to UTF-8?
I always get this error:
Arguments to text methods must be UTF-8 encoded
I use Prawn as PDF Writer.
0
votes
1answer
123 views
do not embed custom font into Prawn generated PDF
I use Prawn to generate PDF.
When I use custom font (Arial CE with central/east european characters), the font is embedded into target PDF.
pdf.font_families.update(
"Arial" => {
...
1
vote
3answers
165 views
Generating a PDF With Images from Base64 with Prawn
I am trying to save multiple pngs in one pdf. I'm receiving the PNGs from an API Call to the Endicia Label Server, which is giving me a Base64 Encoded Image as response.
Based on this Question:
How ...
0
votes
1answer
83 views
Create a sub-total each page n prawn rails
So I generate my report using prawn on my rails with some data of accounting. I do my prawn with create a file.pdf.prawn an put the layout of the report there, not from a model. I need so my report ...
0
votes
1answer
73 views
How to get text and single-row table to render inline in Ruby Prawn
I want to render some text followed by a few single row tables. If I try the following:
pdf.text "Credit Card Number: "
4.times do
pdf.table [Array.new(4, Prawn::Text::NBSP)]
pdf.text " "
end
...
0
votes
1answer
69 views
Trying to position a table using Prawn
I'm creating a pdf roster using prawn in ruby on rails. I'm going to have about 100 rows in my table and it doesn't fit on one page when vertical. What I want to do is have the table wrap around once ...
0
votes
0answers
19 views
Activerecord query join?
I'm using ActiveRecord with Prawn to output a PDF report.
I have Host and System_admin models. I'm trying to return a system admin name for each host.
Host.sorted.each do |host|
admin = ...
0
votes
1answer
129 views
Prawn: Creating a PDF having a header banner and a repeated-header table
The objective is: Creating a PDF having a header banner and a repeated-header table
The problem is: pdf.move_down not work if the table start a new page
CODE:
# repeat drawing in every page
...
0
votes
1answer
31 views
Can the gem prawn be used to create PDFs with embedded video?
Is is possible to use prawn http://prawn.majesticseacreature.com/ to create a document with embedded flash?
I have gone over the api and am coming up empty.
If prawn doesn't yet have this feature, ...
0
votes
1answer
56 views
How to display boolean field in prawn pdf?
I am trying to display a boolean field in a table using pawn. I get the following error:
Content type not recognized: false
I have read through http://prawn.majesticseacreature.com/manual.pdf and ...
1
vote
0answers
15 views
Hardcoded string and assigned string acts differently
Working with ruby 1.9.3 --> when rendering text pdf.text "Hello \n World" it works as advertised.
However, if i pass it as a parameter from ARGV " \n " is just being displayed as text and not CR.
...
0
votes
1answer
131 views
Undefined method size in PRAWN rails 3
Hi i'm getting error in this line of code:
pdf.font.size = 13
The name of the file is "show.pdf.prawn"
I'm trying to generate a page into pdf using the prawn gem.
But changing the font size isn't ...
1
vote
0answers
109 views
Generating a PDF using prawn sometimes results in damaged PDF
I'm creating a multi-page PDF that contains a table with 7 columns.
When I create the PDF on my development computer (Mac OS X 10.8, ruby 1.9.2, Rails 3.2.6) it downloads and renders correctly.
If I ...
0
votes
1answer
160 views
prawn gem for PDF generation, not enough space if A4 page size is used. Rails 3.2.8
I have got an ExportPdf class which inherits a Prawn :: Document like this -
class ExportPdf < Prawn::Document
def initialize(vehicles, view, page, *args)
super({:top_margin => 70, ...
1
vote
1answer
103 views
Is it possible to render blob images in a prawn document?
I´m willing to use Gruff to render some graphics inside prawn documents.
I want to avoid the delay of writing images to the disk only for them to be read by Prawn.
Gruff offers the to_blob method ...
1
vote
1answer
81 views
Rails prawnto gem generate pdf from multiple-db
I have such models:
class WorkOrder < ActiveRecord::Base
self.table_name = "work_orders"
set_primary_key "id"
has_many :work_order_details
belongs_to :type
belongs_to :client
def ...
0
votes
1answer
54 views
Multiple attachements with ActionMailer?
I am successfully sending emails with one PDF attachment using action mailer but I now have a need to send multiple PDF attachements in one email. I had hoped I could just pass in my products and ...
0
votes
2answers
237 views
Add image using Prawn, got error: Prawn::Errors::UnsupportedImageType, PNG uses unsupported interlace method
I used Prawn to create pdf file, I want to put the logo in file. I have looked at this site Creating pdf to reference how to add image.
This is my code in ExamResultPdf.rb file to generate pdf:
...
1
vote
0answers
104 views
Start new page automatically when using stacked bounding boxes in Prawn
I want to simulate the behaviour of a table in Prawn, but can't use table because of the limitation of things I can draw inside cells.
So I am using bounding boxes in order to create contexts for the ...
0
votes
1answer
35 views
Why are the origins changed after using Prawn's bounding_box?
This snippet of code produces unexpected results:
require 'prawn'
Prawn::Document.generate("test.pdf") do
move_down 50
bounding_box [0, cursor], width: bounds.width do
20.times do
...
0
votes
1answer
167 views
How to use prawn pdf inside a node / express app
In a node.js app I want to generate pdf docs and send it back to the user. I would like to use Prawn PDF as I have used it before and am comfortable using it.
I suppose I should use node's ...
0
votes
2answers
140 views
Rails render array to pdf with prawn
I need to render my @manufacturers array to pdf, but do it only via click on some link in view...
Now i have such code
def index
@manufacturers = Manufacturer.all
respond_to do |format|
...
0
votes
0answers
23 views
Prawn and nested cells
If I pass a nested array to Prawn, it (correctly) creates multiple cells within the parent cell.
However, these cells don't necessarily fill the parent - they just take up the required space and then ...
0
votes
1answer
60 views
How do you add a border to an image with Prawn?
How can I add a border to an image with Prawn (pdf library)? If this is possible, can you add padding as well?
2
votes
1answer
71 views
Using Nori and Prawn
I recently started using Prawn in my application to generate PDFs, I also use Nori to parse XML and send SMS.
I realized that my app couldnt send SMS anymore, I got this error message:
nori: ...
1
vote
1answer
228 views
How to convert base64 string to PNG using Prawn without saving on server in Rails
So I am trying to embed a PNG image of canvas to PDF using Prawn gem. Base64 string is generated by using canvas' toDataURL() function. As the image is only needed in PDF I'm trying to avoid saving it ...
