Boskarin wrote:

> So far so good, but as you can imagine a jump of 50 version have major
> impact downward compatibility.  

I can imagine this very well.
The version you are using is more than 4 years old.

> With old library I used to manage large tables is such way: every row of
> table was a new table that I collate with previous with a negative offset.
> (For example datatable.setoffset(-10f); )

I know. This was documented in the old FAQ:
http://www.lowagie.com/iText/faq.html#tablespacing

> Using a new library spacing between rows is smaller or in most cases all
> rows in entire report are written one above other.  As I have around 200
> reports in single projects, rewriting all will be really ‘funny’.
> 
> If some were in such situation or got any idea please share it with me.

I have been in the same situation as you a few years ago.
I solved it like this: I took the iText source code.
I used an IDE that is able to refactor code.
I refactored the more recent iText version changing the package
names com.lowagie.text into com.lowagie.text2.

I didn't change the old code: I still used import com.lowagie.text.*
But for the new source code (that needed new functionality),
I used import com.lowagie.text2.*

I don't remember which IDE I used, I think it was Eclipse,
but if you make a new iText2.jar, let us know, because Paul
Hastings who has just posted a question about tables, will
be happy if you make your new jar available to him.

br,
Bruno

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

Reply via email to