Tagged Questions
0
votes
0answers
28 views
wkhtmltopdf not working in Rails 2.3.X on CentOS
I'm trying to create a CentOS box that can run wkhtmltopdf from pdfkit for use with Ghostscript. Currently I am getting the error message at the bottom of this question. I am using the install method ...
0
votes
0answers
33 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
72 views
Extract fields out of a ruby hash with special chars
I'm working to turn a pdf signature visible, using origami.pdf, and meanwhile I noticed that my signature is an hash, and so I try to capture fields like "Location", "Reason", "Date", "ContactInfo".
...
0
votes
0answers
70 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 ...
1
vote
0answers
174 views
Weird application error caused by “MultiJson::DecodeError: 795: unexpected token”
I'm building an application which creates PDF documents with maps of trips created by the users. It has two stages:
Personalization - users choose points of interests.
Finalization - users enter ...
0
votes
1answer
45 views
How to write a dynamically generated pdf string to a file in ruby 1.8.7
I am interacting with a webservice. That webservice returns a string which I should write to a pdf file. I have to work with ruby 1.8.7. I have been unable so far to generate a valid pdf string and ...
0
votes
1answer
94 views
Is there a common solution to generate msoffice, libreoffice and pdf documents on the fly?
I would like to generate office documents (msoffice, oo) and pdf on the fly from one source document. Currently i think about opendocument as templates files and libreoffice-headless as converter.
...
0
votes
1answer
82 views
Append Rails partial to existing PDF
I have a rails project that I'm using wicked_pdf to generate PDFs from generated html and I'm appending a slick footer to each page of that pdf. A lot of these pages to pdfs are actually coming from ...
0
votes
2answers
268 views
Echosign APIs and pre-populating text in a PDF
I have a pdf with several text fields. I have used Echosign's tutorial on creating text tags to create the tags but the Echosign API expert told me that the API method I've been told to use ...
2
votes
2answers
89 views
Save desired pdf page from pdf file using ruby
I have a pdf file. I want to save a given page (page #5, for intsance) as other pdf file. How do I accomplish this?
So far I've used pdf-reader gem – but it's suitable for reading pdfs (though I can ...
1
vote
2answers
249 views
Prawn: Table of content with page numbers
I need to create a table of contents with Prawn. I have add_dest function calls in my code and the
right links in the table of content:
add_dest('Komplett', dest_fit(page_count - 1))
and
text "* ...
1
vote
1answer
322 views
Wicked PDF generation error in production mode
I'm using WickedPDF in my Rails app to generate PDF files. It's working great on my local machine. In production I'm seeing the following error in my log:
Started GET "/financieel/facturen/2.pdf" for ...
2
votes
0answers
181 views
How and where i can define wkhtmltopdf path for rake task running through whenever cron job Rails3
I want to generate pdf using rake task running through whenever cron job rails.When i running this rake task by this command on console it is generating pdf fine
bundle exec rake ...
2
votes
2answers
401 views
Prawn pdf nested tables - can't find examples
I need to generate a document with nested tables in prawn pdf.
The most recent answer on this stack overflow question seems to indicate that I can do it like this:
...
1
vote
1answer
589 views
Prawn PDF table mixed formats
I am trying to generate a simple table in ruby with prawn pdf.
I need some text in a cell to be bold, and some to be not bold. For example:
Now following some examples, I have the basic table ...
2
votes
2answers
450 views
Advanced PDF Generation with Ruby / Rails
We have a document management system written in PHP that uses mPDF to generate rather complex PDFs. We grew to love it, and mPDF allowed us to:
Use HTML/CSS to style the pages
Produce 200+ Page ...
1
vote
0answers
118 views
Render pdf with page specific footnotes in ruby
I'm looking for a way to render a pdf document with footnotes, where the footnote text appears in the footer of the same page as the footnote reference (as opposed to end of document). This kind of ...
2
votes
0answers
291 views
Prawn pdf and page breaks
I'm trying to generate a pdf using Prawn 0.12.0.
The content I am rendering is very dynamic and often spans over multiple pages.
The problem I'm having is that when it starts a new page ...
4
votes
3answers
464 views
Which gem is used to generate the pdf file in rails 3
I want to generate the pdf file in rails 3.0.0.please tell me which gem is used to generate the pdf file.
1
vote
1answer
317 views
How do I strike through an entire row in a prawn PDF table?
I have a Prawn PDF that prints off a list of tickets in a table:
Prawn::Document.generate("doorlist.pdf") do
table([["Ticket", "Name", "Product"]] + tickets.map do |ticket|
[
...
0
votes
1answer
95 views
What is the best way to print (save) a web form to the server in a Ruby on Rails application?
To be more specific, I am building a Ruby on Rails application where a user will fill out a web form, but I need the [submit] action to PRINT/SAVE an uneditable (PDF or similar) document on the ...
1
vote
1answer
153 views
WickedPdf stoped working on my local system
I'm getting this error while generating pdf using wkhtmltopdf
undefined method `pdf_from_string' for #<WickedPdf:0x7f4b82a369c8>
my wicked_pdf.rb
WickedPdf.config = {
:wkhtmltopdf => ...
2
votes
1answer
516 views
Wicked_pdf working fine in development, but not in production
I've been working with wicked_pdf to generate some PDFs in Rails, and it's been working fine in my dev environment, but I get a 500 error (but no specific errors in my log) when I try and generate one ...
7
votes
3answers
2k views
How to edit or write on existing PDF with Ruby?
I have a couple of PDF template files with complex content and several blank regions/areas in them. I need to be able to write text in those blank regions and save the resulting PDFs in a folder.
I ...
4
votes
3answers
468 views
how to create multi page pdf from html
We need to print thousands of invoices that are in this format -
http://example.com/orders/n
where n = thousands of orders
Going through each order and then clicking on "print" is taking us a ...
3
votes
1answer
561 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.
2
votes
1answer
274 views
How do PDF coordinates work?
I am trying to convert an ORACLE FAP file (yeah, I know, "fap"...hehe) into a PDF but have run into a snag. Here is what I have done:
Found the Documentation ...
0
votes
2answers
96 views
Generating PDFs from HTML with variables in Ruby/Rails
We are refactoring our PDF generator in our app and are looking at alternatives to the hacked up one we use now. After some research, it seems Prawn or PDFKit is the way to go.
Ideally, we would like ...
0
votes
1answer
361 views
What gem should i use to manipulate pdf files in ruby?
I need to create a new pdf file from other pdf files, for example i have
file1.pdf, file2.pdf
need to create a new_file.pdf, that contains page 1, 4, 6 from file1.pdf, and 1, 3, 4 from file2.pdf.
I ...
0
votes
2answers
311 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
...
1
vote
4answers
182 views
Rails 2 — Pass parameter to wicked_pdf based on server os
I have a method
def welcome(*args)
#....some code
end
Based on a situation I have to call this method sometimes as
welcome(arg1,arg2) {|block| #code}
but sometimes I want to call
...
10
votes
3answers
3k views
HTML page to PDF converter in Ruby?
Is there available any gem or plugins to convert HTML page to PDF?.
1
vote
2answers
4k 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
311 views
Ruby- Open and draw on pdf
Is there a good gem to open a PDF and draw lines on it? I've played around RMagick and prawn, both seem to only create new PDFs and not edit pre-existing ones.
0
votes
2answers
222 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
293 views
pdf generation from serial letter word template with merge fields
I need to generate pdfs from serial letter templates containing merge fields in ms/oo word format. The app should be running on a debian linux server. Only opensource or free tools should be used.
...
0
votes
1answer
537 views
Create PDF, insert it in another and merge pages - ruby PDF tool?
I am searching for a tool for ruby, that allows me to:
Create pdf with images, texts and barcodes (I use barby). This document has a very precise specification – all elements have to be placed ...
15
votes
5answers
5k views
How to generate PDF from markdown using pure ruby
I'm currently using Kramdown to generate HTML from Markdown in Ruby.
I know that I can generate a latex file using kramdown and convert it to pdf usaing a command line utility. But I want a pure ruby ...
4
votes
5answers
3k views
How do you combine PDFs in ruby?
This was asked in 2008. Hopefully there's a better answer now.
How can you combine PDFs in ruby?
I'm using the pdf-stamper gem to fill out a form in a PDF. I'd like to take n PDFs, fill out a form ...
2
votes
1answer
864 views
Word to PDF conversion in Ruby/Rails? [closed]
Is there a gem or library to convert word document to pdf files in ruby on rails?
2
votes
1answer
529 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 ...
3
votes
3answers
2k 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
948 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:
...
1
vote
2answers
565 views
Ruby library for manipulating existing PDF
I'm searching for a library to edit already existing PDF's and add a watermark to each page, for example. Could also be blank every other page etc.
There seem to be a few PDF libraries out there, but ...
3
votes
3answers
1k 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
419 views
Dynamically Generate Editable PDF
Is there a way to create an editable PDF programmatically? By editable, I mean you can click in a text area and type in your name, that kind of thing.
I'm using Ruby and have found PrinceXML and ...
0
votes
1answer
1k 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 ...
2
votes
3answers
2k 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
2answers
429 views
how to set color in ruby pdf-writer
I'm using pdf-writer gem in ruby.
While drawing a table, i need to set the shade_color and shade_color2 of table so that the rows get the alternate shade and shade2 colors.
Can anyone tell me how to ...
1
vote
3answers
459 views
Creating on-demand, print-quality PDFs (preferably in Ruby if feasible)
Main-Question
What's your fast and reliable (as in "stable") solution to create on-demand, newspaper-like (as in "using advanced layout or typesetting") PDFs out of an application on a Linux server?
...

