Re: concatenating pdf files

2007-12-22 Thread David Baron
 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

 -ishwar

Go to kde-apps.org, get pdfedit.
It is a very useful tool and your concatenation can be done there.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: concatenating pdf files

2007-12-22 Thread John Hasler
David Baron writes:
 Go to kde-apps.org, get pdfedit.

There's a debian package.

aptitude install pdfedit
-- 
John Hasler


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: concatenating pdf files

2007-12-22 Thread Kamaraju S Kusumanchi
ISHWAR RATTAN wrote:

 
 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.


To combine pdf files use pdftk.
pdftk in1.pdf in2.pdf cat output out1.pdf

To combine eps files use psmerge. 
psmerge -ocombined.eps file1.eps file2.eps file3.eps file4.eps

More info can be found in their man pages.

Depending on the sizes of these pdf/eps/ps files, you can also open up a
word processor (oowriter or texmacs), insert these files and then export
the resultant file into a .pdf file. This works well if the files are small
or if multiple images can be fit into a single page etc.,

hth
raju
-- 
Kamaraju S Kusumanchi
http://www.people.cornell.edu/pages/kk288/
http://malayamaarutham.blogspot.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



concatenating pdf files

2007-12-21 Thread ISHWAR RATTAN


I have scanned related pages of a document as jpeg
(limitation of software), converted to pdf using
imagemagick::convert. Now is there a way to concatenate
the pdf files (or jpeg files and then conver to pdf)
to collect the complete document.

-ishwar


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: concatenating pdf files

2007-12-21 Thread Douglas A. Tutty
On Fri, Dec 21, 2007 at 12:25:40PM -0500, ISHWAR RATTAN wrote:
 
 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

It all depends on scale.  How many pages?  If its a short document, I
would use LaTex and include one image on each page, then process the
whole LaTex file to produce a final pdf.  If its a long document, I
would write a python script to create the LaTex file from the files,
then process the LaTex to produce the final pdf.  Either way, I'd use
LaTex to turn multiple images into one document.

Doug.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: concatenating pdf files

2007-12-21 Thread Mirco Piccin
Hi!

 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

i use GhostScript in a similar case in this way:

gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=firstANDsecond.pdf -dBATCH
first.pdf second.pdf

that for me works perfectly. Of course you can join more than 2 files.
'man gs' (and google :-D) surely help you for parameters.

Hope that helps you!


Re: concatenating pdf files

2007-12-21 Thread Sergio Cuéllar Valdés
2007/12/21, ISHWAR RATTAN [EMAIL PROTECTED]:

 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

 -ishwar

Hello,

look, this page says how to:

http://ansuz.sooke.bc.ca/software/pdf-append.php

I havent probed it

best regards,
Sergio Cuellar


-- 
Meine Hoffnung soll mich leiten
Durch die Tage ohne Dich
Und die Liebe soll mich tragen
Wenn der Schmerz die Hoffnung bricht


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: concatenating pdf files

2007-12-21 Thread Jochen Schulz
ISHWAR RATTAN:
 
 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

You can use pdfjoin from the package pdfjam. It depends on a Latex
Environment, though, so it is a quite heahy solution for a one-time job.

J.
-- 
When I get home from the supermarket I don't know what to do with all the
plastic.
[Agree]   [Disagree]
 http://www.slowlydownward.com/NODATA/data_enter2.html


signature.asc
Description: Digital signature


Re: concatenating pdf files

2007-12-21 Thread Andrea Ganduglia
On 12/21/07, ISHWAR RATTAN [EMAIL PROTECTED] wrote:

 I have scanned related pages of a document as jpeg
 (limitation of software), converted to pdf using
 imagemagick::convert. Now is there a way to concatenate
 the pdf files (or jpeg files and then conver to pdf)
 to collect the complete document.

Just yesterday evening I wrote a simple utility that allow this
wrapping cups-pdf functions. It's write in ruby and dependes from
cups-pdf, ruby and lpr.

I published a few minutes before you read your mail! You can find this on
http://www.openclose.it/wiki/?qq=joinpdf

It works with PS, JPEG, ASCII too. You can choose which pages to be
printed as document and print them in what order.

Please, report bugs and wish list. Enjoy!


-- 
Andrea Ganduglia
Openclose.it - Idee per il software libero
http://www.openclose.it


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: concatenating pdf files

2007-12-21 Thread Tadeusz Bak



On Fri, 21 Dec 2007, ISHWAR RATTAN wrote:



I have scanned related pages of a document as jpeg
(limitation of software), converted to pdf using
imagemagick::convert. Now is there a way to concatenate
the pdf files (or jpeg files and then conver to pdf)
to collect the complete document.


Probably pdftk is the tool for you:

Package: pdftk
Priority: optional
Section: text
Installed-Size: 2764
Maintainer: AurĂŠlien EROME [EMAIL PROTECTED]
Architecture: i386
Version: 1.40-2
Depends: libc6 (= 2.3.6-6), libgcc1 (= 1:4.1.1-12), libgcj7-0 (= 
4.1.1-12), libstdc++6 (= 4.1.1-12)

Suggests: xpdf-utils
Filename: pool/main/p/pdftk/pdftk_1.40-2_i386.deb
Size: 953304
MD5sum: fdc078214ef122a25cc89cfaa0d11374
SHA1: f30c823268d90633aa65cbf746114e8ee6290c58
SHA256: 62230656da61e34cd16955430e34fe9c0db5545cde83c3b139371a6cf905b872
Description: A useful tool for manipulating PDF documents
 If PDF is electronic paper, then pdftk is an electronic stapler-remover,
 hole-punch, binder, secret-decoder-ring, and X-Ray-glasses. Pdftk is a
 simple tool for doing everyday things with PDF documents. Keep one in the
 top drawer of your desktop and use it to:
  - Merge PDF documents
  - Split PDF pages into a new document
  - Decrypt input as necessary (password required)
  - Encrypt output as desired
  - Fill PDF Forms with FDF Data and/or Flatten Forms
  - Apply a Background Watermark
  - Report PDF on metrics, including metadata and bookmarks
  - Update PDF Metadata
  - Attach Files to PDF Pages or the PDF Document
  - Unpack PDF Attachments
  - Burst a PDF document into single pages
  - Uncompress and re-compress page streams
  - Repair corrupted PDF (where possible)
 .
  Author: Sid Steward [EMAIL PROTECTED]
  Homepage: http://www.accesspdf.com/pdftk


Regards,
  Tad