-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:

I need to use the Prawn PDF gem to accomplish the task. I have an existing pdf document called Dooku.pdf - it contains sensitive information on the Evil Count Dooku's activities. In Dooku.pdf there is text called {galaxy}. {galaxy} is always in the same location on every page of the pdf document.

I need to open Dooku.pdf, replace each instance of {galaxy} with {planet} and then save/close Dooku.pdf. How do I accomplish this task using the Prawn PDF gem?

-May the force be with you.

link|improve this question
+1 for the creative question asking, even if it's a bit over the top. – Mike Bethany Feb 2 '11 at 1:50
2  
A bit? That's like... 640kb over the top, which should be enough for anybody. – Mark Storer Feb 2 '11 at 18:11
feedback

2 Answers

up vote 1 down vote accepted

1) I'm a star wars fan and all, but damn.

2) Your "simple task" is not even remotely simple. It's not that hard to COVER the existing text... but REPLACING IT is another mater entirely. And forget reflowing existing text. All-but-impossible.

If covering it will suffice, then you need only draw a rectangle filled with the background color over your first string, then draw your second string on top of it. I'm not familiar with Prawn PDF, so I'll leave the implementation details as an Exercise For the Reader.

link|improve this answer
+1 Agreed. PDF's are for not for content generation or editing they are for layout control. Just open one up in a raw text editor and you'll see what Mark means. They are full of gobbledygook and other such gibberish. – Mike Bethany Feb 2 '11 at 2:11
The main thing is getting the text in a predetermined location on each page - like a footer(empty spot). {galaxy} doesn't even have to be present. So no problems drawing the box and placing the text. I'm just wondering if this is possible with an existing PDF. And if so how to accomplish this task with Prawn PDF. @$!#$ I hear Imperial Storm Troopers...this location has been compromised. – Sandeep Feb 2 '11 at 3:34
You gave it your best shot! - May the force be with you. – Sandeep Feb 5 '11 at 21:06
feedback

You can't. Prawn is for writing PDFs, not reading them.

link|improve this answer
Anything in Ruby that can make this happen? Thoughts? – Sandeep Feb 3 '11 at 2:17
So you're looking to parse a PDF document and then regenerate it, replacing certain portions of it? – Tass May 23 '11 at 20:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.