[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

PDF file manipulation

Mike Lopke

9/13/2006 4:56:00 PM

I've looked at PDF::Writer, ruby FPDF, etc.

Are there any ruby tools for manipulation of existing PDF files? Php
has the fpdi extention.

Thanks,
Mike

--
Posted via http://www.ruby-....

2 Answers

vasudevram

9/13/2006 5:58:00 PM

0


Mike Lopke wrote:
> I've looked at PDF::Writer, ruby FPDF, etc.
>
> Are there any ruby tools for manipulation of existing PDF files? Php
> has the fpdi extention.
>
> Thanks,
> Mike
>
> --
> Posted via http://www.ruby-....

If you can't find any Ruby tools, then one way out, though could take
more time and be difficult, depending on your level of skill with
writing Ruby extensions, would be to find a C or C++ lib and wrap it as
a Ruby extension.

A simpler way than writing a Ruby extension, though not trivial either,
could be to do XML-RPC calls to a lib wrapped as an XML-RPC server,
written in another language that has PDF manipulation support. This
would have some performance overhead though.

Vasudev Ram
http://www.dancin...

Mike Lopke

9/13/2006 7:32:00 PM

0

vasudevram wrote:
> Mike Lopke wrote:
>> I've looked at PDF::Writer, ruby FPDF, etc.
>>
>> Are there any ruby tools for manipulation of existing PDF files? Php
>> has the fpdi extention.
>>
>> Thanks,
>> Mike
>>
>> --
>> Posted via http://www.ruby-....
>
> If you can't find any Ruby tools, then one way out, though could take
> more time and be difficult, depending on your level of skill with
> writing Ruby extensions, would be to find a C or C++ lib and wrap it as
> a Ruby extension.
>
> A simpler way than writing a Ruby extension, though not trivial either,
> could be to do XML-RPC calls to a lib wrapped as an XML-RPC server,
> written in another language that has PDF manipulation support. This
> would have some performance overhead though.
>
> Vasudev Ram
> http://www.dancin...

I've also considered doing a port of the fpdi from php to ruby. A ruby
version of the fpdf has already been done. I've no idea really how much
work that would be, though. I just fishing a bit to see if there is any
effort under way not to add this functionality.

Mike

--
Posted via http://www.ruby-....