> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Slavin, Andrew
> Sent: Wednesday, November 28, 2007 1:40 PM
> To: [email protected]
> Subject: [iText-questions] PdfReader and PdfStamper
> 
> hi,
> 
> i have two questions about the PdfReader and PdfStamper objects:
> 
> 1. why does instantiation of the PdfReader object 
> significantly increase
> memory consumption?
> 
> e.g. the following two lines of code increase application's memory
> footprint from 10kb to 200kb when <file_path> is the path to 
> a 90mb pdf
> file:
> 
>       FileStream is = new FileStream(<file_path>, FileMode.Open);
>       PdfReader reader = new PdfReader(is);
>

byte[] b = new byte[100000000];

Look! With a single line my memory foot print inclease 100M. There's a
lot of thing to keep in PdfStamper and that doesn't come for free.
 
> 2. when i create a new pdf file from existing one, using PdfStamper
> object, the new file differs from the original one in size:
> 
>       FileStream is = new FileStream(<original_file_path>,
> FileMode.Open);
>       FileStream os = new FileStream(<new_file_path>,
> FileMode.Create);
>       PdfReader reader = new PdfReader(is);
>       PdfStamper stamper = new PdfStamper(reader, os);
> 
> e.g. i have a 45mb pdf file, and if i use it as an original file, the
> new file is only 19mb. visually i cannot see any difference 
> between the
> two, but is it safe to say that PdfStamper does not remove 
> anything from
> the original file (e.g. attachments)?

For such a reduction I suspect that you have multiple revisions in the
same PDF. iText will only use the latest revision and will keep
everything except tagged data.

Paulo


Aviso Legal:
Esta mensagem é destinada exclusivamente ao destinatário. Pode conter 
informação confidencial ou legalmente protegida. A incorrecta transmissão desta 
mensagem não significa a perca de confidencialidade. Se esta mensagem for 
recebida por engano, por favor envie-a de volta para o remetente e apague-a do 
seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de 
usar, revelar ou distribuir qualquer parte desta mensagem. 

Disclaimer:
This message is destined exclusively to the intended receiver. It may contain 
confidential or legally protected information. The incorrect transmission of 
this message does not mean the loss of its confidentiality. If this message is 
received by mistake, please send it back to the sender and delete it from your 
system immediately. It is forbidden to any person who is not the intended 
receiver to use, distribute or copy any part of this message.


-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

Reply via email to