I've just subscribe to the mailing list. Normally I would be able to received
some more information.
So can you send me some code example of duplicating signature appearance, in
order to insert it in the PDF page, before deleting existing signature?
--
View this message in context:
http://itex
Hi ,
I have two pdf files stored in different location as
http://localhost/test/Temp/Test1.pdf and
http://localhost/test/Temp/Test2.pdf
I want to combine the two in one single pdf in Java .
I looked the itext example online
List pdfs = new ArrayList();
pdfs.add(new FileInputStream
On 11/03/2011 10:30, Gigi wrote:
Hi to all.
I've searched for quite a long time about this topic, but something
seems to be missing.
Scenario: I have a bunch of pdf files to merge, and that's not a
problem (I'm following the instructions on "Importing pages" written
herehttp://www.manning.co
Hi to all.
I've searched for quite a long time about this topic, but something seems to
be missing.
Scenario: I have a bunch of pdf files to merge, and that's not a problem
(I'm following the instructions on "Importing pages" written here
http://www.manning.com/lowagie2/samplechapter6.pdf ). Amongs
Hi to all.
I've searched for quite a long time about this topic, but something seems to
be missing.
Scenario: I have a bunch of pdf files to merge, and that's not a problem
(I'm following the instructions on "Importing pages" written here
http://www.manning.com/lowagie2/samplechapter6.pdf ). Amongs
On 5/10/2010 13:22, tutubel wrote:
>
> Thank you for the fast answer.
> I have the annots array now, but i couldn't render the new pdf.. It can be a
> piece of cake
It's not a piece of cake: there are a plethora of different
types of annotations, and each type of annotation will demand
a different
Thank you for the fast answer.
I have the annots array now, but i couldn't render the new pdf.. It can be a
piece of cake but i'm a newbie in itext and the api didnt help me much.. Can
you please be more specific about using PdfStamper&direct content to render
copied pdf?
--
View this message i
On 5/10/2010 10:33, tutubel wrote:
>
> Hi,
>
> I have this project where a person highlights important places in pdf
> articles& uploads these pdf's to a server. Now i want to merge pdf&
> highlights so people with ipad can view highlighted places (ipad does'nt
> display annotations without extra
Hi,
I have this project where a person highlights important places in pdf
articles & uploads these pdf's to a server. Now i want to merge pdf &
highlights so people with ipad can view highlighted places (ipad does'nt
display annotations without extra software)
How can i merge these to make a pdf
Venkat wrote:
> Hi,
> Any idea or anyone faced such a scenario where in a batch of merging pdfs
> some
> succeed and some fails to merge with no exception at all using JDK 1.5 and
> itext-2.1.1 and itext-5.0.1( we tried both versions of itext)
> Please advise, looks like really weird.
You'll ha
Hi,
Any idea or anyone faced such a scenario where in a batch of merging pdfs some
succeed and some fails to merge with no exception at all using JDK 1.5 and
itext-2.1.1 and itext-5.0.1( we tried both versions of itext)
Please advise, looks like really weird.
---
Thank you. I was able to merge using HTMLWorker. Now I am trying to use
TextMarginFinder.
1T3XT info wrote:
>
> Gaba wrote:
>> Hi
>>
>> I have a requirement where I need to merge a PDF with dynamically
>> generated
>> HTML content from Rich Text Area.The HTML content is stored in a String
>> v
Gaba wrote:
> Hi
>
> I have a requirement where I need to merge a PDF with dynamically generated
> HTML content from Rich Text Area.The HTML content is stored in a String
> variable. The formatting of the content in the HTML has to be preserved
> while merging. For e.g. if text in HTML is bold, re
Hi
I got a sample program for parsing HTML. Please let me know how to merge it
with a pdf and put it just one line below the last paragraph. It should wrap
at the end of the line and rollover to new page if it reaches end of page.
Thank you
Gaba wrote:
>
> Hi
>
> I have a requirement where I
Hi
I have a requirement where I need to merge a PDF with dynamically generated
HTML content from Rich Text Area.The HTML content is stored in a String
variable. The formatting of the content in the HTML has to be preserved
while merging. For e.g. if text in HTML is bold, red in color and italics,
One other option - use a PDF Package (aka Collection) to store the forms rather
than a page-based merge.
-Original Message-
From: 1T3XT info [mailto:i...@1t3xt.info]
Sent: Sunday, April 25, 2010 4:23 AM
To: Post all your questions about iText here
Subject: Re: [iText-questions] merging
King Goldman wrote:
> Hi,
> I created a fillable PDF Form and i am successfully able to fill the
> form using itext.
> Now, i am trying to fill the same form for say over 10 people, i am
> trying to have all
> the filled forms in one PDF document.
> Can you suggest me a solution on how do i get t
Hi,
I created a fillable PDF Form and i am successfully able to fill the form
using itext.
Now, i am trying to fill the same form for say over 10 people, i am trying
to have all
the filled forms in one PDF document.
Can you suggest me a solution on how do i get to do this?
Here is what my pdf form
algo...@hotmail.fr wrote:
> To my horror, I realised that annotations (comments, page attachment)
> are not copied.
Why the horror? This behavior (and the reason why it happens) is very
well documented in chapter 2 of the first edition of "iText in Action".
> Also, I had some forms...and all th
Hello, I'm using itextSharp, from VB.NET
I had some code to merge two pdf files.
I was using instructions such as
cb = writer.DirectContent
page = writer.GetImportedPage(reader, i)
cb.AddTemplate(page, 1, 0, 0, 1, 0, 0)
to access an exiting page, and create new ones.
Works fine...execpt that..
: Saturday, January 24, 2009 4:25 PM
To: itext-questions@lists.sourceforge.net
Subject: [iText-questions] Merging PDF files created by Microsoft Reporting
Services
I have attached two small PDF files that are created by Microsoft Reporting
Services. I am attempting to merge these files. The end
I have attached two small PDF files that are created by Microsoft Reporting
Services. I am attempting to merge these files. The end result is a file
that has the correct number of pages, but is blank.
I have used 3 different libraries, including iTextSharp. I have used the
PDFCopy routine as
Steve Cole wrote:
> You need to do something like this...
>
> PdfCopyFields pdfCopyFields = new PdfCopyFields(new
> FileOutputStream("my_document.pdf"));
>
> PdfReader reader = new PdfReader(myByteArrayOutputStream1.toByteArray());
> pdfCopyFields.addDocument(reader);
>
> reader = new Pdf
putStream2.toByteArray());
pdfCopyFields.addDocument(reader);
pdfCopyFields.close();
- Original Message -
From: Steve Weston
To: iText PDF generator
Sent: Thursday, December 18, 2008 11:44 AM
Subject: [iText-questions] Merging PDF files
Hi,
I'm trying to merg
Hi,
I'm trying to merge two PDF files and I'm having trouble getting this figured
out. I've been reading the tutorial and been through the mailing list, looked
through the tool concat_pdf.java, but everything seems to be based on the
documents already existing on disc.
Basically I have two
ratePDF(ReponsePDF.java
> > :102)
> > at
> > ca.qc.inspq.junit.ReponsePDFTest.main(ReponsePDFTest.java:80)
> >
> > Jeff
> >
> > On 3/2/07, Paulo Soares <[EMAIL PROTECTED] > wrote:
> > > Importing pages doesn't preserve links
DF format.
> >
> > Paulo
> >
> > > -Original Message-
> > > From: [EMAIL PROTECTED]
> > > [mailto: [EMAIL PROTECTED]
> On
> > > Behalf Of Larouche Jean-François
> > > Sent: Friday, March 02, 2007 4:49 PM
> > > To: Pos
: Friday, March 02, 2007 5:51 PM
> To: Post all your questions about iText here
> Subject: Re: [iText-questions] Merging PDF, but different
> from example.
>
> So its not possible to use something like this?
> There must be a way, i probably dont use it correctly.
>
> Byte
Of Larouche Jean-François
> Sent: Friday, March 02, 2007 4:49 PM
> To: Post all your questions about iText here
> Subject: Re: [iText-questions] Merging PDF, but different
> from example.
>
> Ack i just tough about it, i cannot do that, there might by
> hyperlinks inside the
r questions about iText here
> Subject: Re: [iText-questions] Merging PDF, but different
> from example.
>
> Ack i just tough about it, i cannot do that, there might by
> hyperlinks inside the PD4ML generated pdf. If i clip an image
> i will loose all this information.
>
ting PDF pages and treating them
> as images.
>
> Paulo
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] ] On
> > Behalf Of Larouche Jean-François
> > Sent: Friday, March 02, 2007 4:36 PM
> > To: Post all your que
ng PDF pages and treating them as
images.
Paulo
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Larouche Jean-François
> Sent: Friday, March 02, 2007 4:36 PM
> To: Post all your questions about iText here
> Subject: Re: [iText-
stions about iText here
> Subject: Re: [iText-questions] Merging PDF, but different
> from example.
>
> Well i want to add the "content" of all pages in another PDF
> inside a PdfPCell.
> That cell is inside a dynamically generated Document with iText.
>
> Wou
Well i want to add the "content" of all pages in another PDF inside a
PdfPCell.
That cell is inside a dynamically generated Document with iText.
Would that be possible?
Im still digging through mailing archive without luck.
On 3/2/07, Bruno Lowagie <[EMAIL PROTECTED]> wrote:
Larouche Jean-Fra
Larouche Jean-François wrote:
> But its only working if i close all the PDFs, re-read them, and merge on
> a page basis.
Are you saying you tried using bytes from a document
that wasn't closed? The close method creates the
Cross-Reference table and the trailer of the document.
Those are essential
Hi All,
Its been some time that i try to merge a PDF created in memory from iText
and
an utility called PD4ML.
Everything is in memory, and the good example on website is working.
But its only working if i close all the PDFs, re-read them, and merge on a
page basis.
The only problem, the user wa
At 8:41 AM +0100 11/13/06, Beck Julien wrote:
>Thanks for your answer. I think we'll then use some PDF/A converter
>tool in our workflow to work around this issue.
>
Although that will get you a PDF/A compliant file out the
back end of your system - it really doesn't solve the problems A
iText
hereSubject: Re: [iText-questions] Merging PDF/A documents to
output also PDF/A
At 10:38 AM +0100 11/9/06, Beck Julien wrote:
I'm currently
performing some evolutions on an archiving solution for a customer.
It handled PDF files, but has now to handle PDF/
Title: Re: [iText-questions] Merging PDF/A documents to
output al
At 10:38 AM +0100 11/9/06, Beck Julien wrote:
I'm
currently performing some evolutions on an archiving solution for a
customer. It handled PDF files, but has now to handle PDF/A
files.
Wonderful! The more PDF/A su
Title: Message
Hello
everybody,
I'm currently
performing some evolutions on an archiving solution for a customer.
It handled PDF files, but has now to handle PDF/A files. Sometimes, files
have to be merged together.
I'm currently trying
to merge several PDF files into one unique file. The
On 23 Mar 2005, at 22:18, Didier Oliver wrote:
Hello,
I would like to use a JAVA API to merge PDF documents into a single
document. I was wondering if this product supports an API to merge
documents. If so, do you have any sample code that could help me get
started.
I thank you in advance
Didier Oliver wrote:
Hello,
I would like to use a JAVA API to merge PDF documents into a single
document. I was wondering if this product supports an API to merge
documents. If so, do you have any sample code that could help me get started.
I thank you in advance for your help...
See c
Hello,
I would like to use a JAVA API to merge PDF documents into a single
document. I was wondering if this product supports an API to merge
documents. If so, do you have any sample code that could help me get started.
I thank you in advance for your help...
Sincerely,
Didier
At 04:02 PM 10/18/2004, Tales R. Heredia wrote:
Do you know if exists some java library that I can make it?
PSServices from Apago (http://www.apago.com) offers a native Java
interface for the conversion of Postscript (and PDF) to a variety of raster
or vector formats.
Leonard
---
PROTECTED] Behalf Of Tales
R. Heredia
Sent: Monday, October 18, 2004 1:03 PM
To: [EMAIL PROTECTED]; Leonard Rosenthol
Subject: Re: [iText-questions] merging pdf and PS
Do you know if exists some java library that I can make it?
Tales
- Original Message -
From: "Leonard Rosenthol&quo
Do you know if exists some java library that I can make it?
Tales
- Original Message -
From: "Leonard Rosenthol" <[EMAIL PROTECTED]>
To: "Tales R. Heredia" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Monday, October 18, 2004 4:33 PM
Subject: Re
At 03:14 PM 10/18/2004, Tales R. Heredia wrote:
How can I merge a small PS inside a big pdf? I have a small image in PS
format and I'd like put this image into PDF. Now I'm using a PS to PDF
converter and using PDFImportedPage to merge it, but I'd like make it
using iText in real time
T
Hi,
How can I merge a small PS inside a big pdf? I have
a small image in PS format and I'd like put this image into PDF. Now I'm
using a PS to PDF converter and using PDFImportedPage to merge it, but I'd like
make it using iText in real time
Regards,
Tales
At 08:29 PM 8/17/2004, Seb wrote:
I've made a function that list all the font into the layer PDF page. I
consider a font is embedded when the "FontFile2" property of the font
descriptor is filled (see into some examples).
That is true - that is ONE PLACE that embedded font data can live.
Thanks.
I've made a function that list all the font into the layer PDF page. I consider a font
is embedded when the "FontFile2" property of the font descriptor is filled (see into
some examples). So, when the font is embedded, i remove the "FontFile2" property.
This process is made on the fly
I understood now why the layer file contains embedded fonts. This is because you can
enter all the aphabetical characters into fields so the PDF does contain the entiere
font. The only possibility is to use Acrobat shared font in the fields or lighten the
final flatted layer file.
I think i wi
At 03:59 PM 8/17/2004, Seb wrote:
I understood now why the layer file contains embedded fonts. This is
because you can enter all the aphabetical characters into fields so the
PDF does contain the entiere font.
Correct.
The only possibility is to use Acrobat shared font in the fields or
At 07:42 PM 8/16/2004, Seb wrote:
If i go to File->Properties->Font on the original PDf layer file (with
empty fields) :
Original Font | Type | Encoding | Actual font | Type
-
Arial | TrueType |Wind
> Then they are probably embedded and subset - that's the distiller
>defaults.
i will investiguate on their distiller settings.
> What fonts are used for these fields? Some users mistakenly pick
>the wrong fonts which cause a significant size increase in the PDF...
...
>
At 04:35 PM 8/16/2004, Seb wrote:
The mecanism consists of modifying the PDF layer file filling static and
dynamics fields (page number for exemple) and merge it on each pages on
the source file. This mecanism works fine but i ve a big probleme with the
final PDF file size.
The problem is that
Hi, i've got a probleme with merging PDF files and embedded fonts. At the beginning
i've got 2 PDF files :
- a naked PDF file that contains lot of pages -> the source file
- a simple page PDF file that contains dynamic and static fields, logo images etc...
-> the layer file
The mecanism consis
Thank you very much Sir. You are great
-Original Message-
From: Bruno [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 12, 2004 2:37 AM
To: Yaser Amarneh
Cc: [EMAIL PROTECTED]
Subject: Re: [iText-questions] Merging PDF with FDF
Quoting Yaser Amarneh <[EMAIL PROTECTED]>:
&
Quoting Yaser Amarneh <[EMAIL PROTECTED]>:
> Hello
>
> I downloaded your iText library, and by the way it is great. I was =
> looking to see if I could merge an FDF file with a PDF file but could =
> not find anything. Could you please tell me if there is a way to do that =
> using your library.
Hello
I downloaded your iText library, and by the way it is great. I was looking to see if I
could merge an FDF file with a PDF file but could not find anything. Could you please
tell me if there is a way to do that using your library. I would really appreciate it.
Thank you very much
Sincerel
Title: RE: [iText-questions] Merging PDF
Use PdfStamper. See the example stamped.java in itextpdf.sf.net.
Best Regards,
Paulo Soares
-Original Message-
From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Francis Leonard
Sent: Monday, January 05, 2004 15:50
To
Title: Merging PDF
Hi,
I would like to know if it is possible to merge pdf files with itext ?
In fact, I have a first pdf file ( back.pdf) and a second file (data.pdf). The thing I want to do is to take the first page of back.pdf and merge it with some of the pages of data.pdf, let's say od
Title: Merging PDF
Hi,
I would like to know if it is possible to merge pdf files with itext ?
In fact, I have a first pdf file ( back.pdf) and a second file (data.pdf). The thing I want to do is to take the first page of back.pdf and merge it with some of the pages of data.pdf, let's say od
At 5:36 PM -0500 9/4/03, Arnaud Lucas wrote:
How could I merge a PDF (with an acroform) with a FDF or preferably
a xFDF into a PDF that contains my form values?
Does someone have a code example?
How about the mergeFDF sample ;).
Leonard
--
---
Hi,
How
could I merge a PDF (with an acroform) with a FDF or preferably a xFDF into a
PDF that contains my form values?
Does
someone have a code example?
concat_pdf can merge PDFs, not PDF and FDF.
Thanks!
Arnaud
See com.lowagie.tools.Concat in the last version.
Best Regards,
Paulo Soares
> -Original Message-
> From: Huttin Pierre [SMTP:[EMAIL PROTECTED]
> Sent: Wednesday, June 11, 2003 16:34
> To: '[EMAIL PROTECTED]'
> Subject: [iText-questions] Merging pdf and ke
Hello,
I have made a script to merge some pdf documents, but I lost the annotations and the highlight
when i merge some document Anyone see a solution ?
---
HUTTIN Pierre
OMNIS ECM Services
81 route de Luxembourg
L-4391 PONTPIERRE
tel : (+352) 29 14 11 1
fax : (+352)
66 matches
Mail list logo