Lumir Navrat writes: > Hi > > when I write my result document. I put some table to the document. > As can see in the attached PDF the spaces are diffrent. It's bug or it > something what i didn't see.
You mean the space between the tables. This space depends from the current leading. I guess the leading changed internally after writing the second table. If you wait for iText0.87, you will be able to change the offset of a Table: table.setOffset(0); This way you will be able to control the space between the table and the previously added object. > One question to the FontFactory. > I see that you using in method registerFont, encoding WINANSI. and next, > when i call getFont i must set parameters encoding and embeded. > The small request: when call register i want choose encoding and > embeded. > I default use IDENTITY_H and embeded. Those if I used this factory, i > must set this always. I could add static variables for encoding and embedding. I'll try to have this in the next release. Bruno _______________________________________________ iText-questions mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/itext-questions
