Re: [iText-questions] Table lines appearing bold sometimes

2009-12-18 Thread George Bilalis
Hi, 1. It's certainly not an iText problem. 2. It's more a screen driver problem of the monitor* you are using. 3. As already stated it's cause is the physical* screen resolution and device space. (*) and this is one of the advantages old analog CRT monitors had over new LCD/TFT flat digital

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-17 Thread ennidhi
you can use setBorder(Rectangle.BOTTOM) Instead of setting the left, right and top border to 0, why not just tell iText it should only draw the bottom border? It won't solve your problem, but I prefer using setBorder(). I Have tried using this method. Its good but problem is that

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-17 Thread 1T3XT info
ennidhi wrote: I Have tried using this method. Its good but problem is that width(thickness of the line) cannot be set. Again we have to go for setwidth***() method to set the thickness. There's a general setWidth() method you can use in combination with setBorder(). Anyway: that's

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-17 Thread ennidhi
Your problem is a non-issue caused by something called resolution and device space. Is there a way to address this problem using iText? or else is it ok to display like this? Thanks 1T3XT info wrote: ennidhi wrote: I Have tried using this method. Its good but problem is that

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-17 Thread 1T3XT info
ennidhi wrote: Your problem is a non-issue caused by something called resolution and device space. Is there a way to address this problem using iText? It's not an iText problem. It's how the viewer works. If it's not an iText problem, why do you think iText (or any other product for that

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-17 Thread mister bean
To perhaps extend Bruno's point: When I look at the problem PDF you posted in PDFxchange Viewer (a free PDF viewer that permits annotation of PDFs from www.docu-track.com), the lines all look the same. There are no bold and non-bold lines. Regards, ---mr. bean re ennidhi wrote: Your

[iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread ennidhi
Hi, I have developed the code based on the itext jars. Some of the table rows are appearing bold (lines diving the rows). Please suggest me here. I am attaching the code and the pdf files. http://old.nabble.com/file/p26812407/Monthly_Strike_Rate_Report_All.pdf Monthly_Strike_Rate_Report_All.pdf

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread Leonard Rosenthol
AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Table lines appearing bold sometimes Hi, I have developed the code based on the itext jars. Some of the table rows are appearing bold (lines diving the rows). Please suggest me here. I am attaching the code and the pdf files

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread ennidhi
] Sent: Wednesday, December 16, 2009 9:59 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Table lines appearing bold sometimes Hi, I have developed the code based on the itext jars. Some of the table rows are appearing bold (lines diving the rows). Please suggest

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread ennidhi
on the issue? Leonard -Original Message- From: ennidhi [mailto:psatishb...@hotmail.com] Sent: Wednesday, December 16, 2009 9:59 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] Table lines appearing bold sometimes Hi, I have developed the code based

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread 1T3XT info
ennidhi wrote: Please see the attachment.The red circled ones are looking bold compared to the other lines in the table. I have used the same type of code for all the lines of the table but only these are looking bold. But its showing fine when I take the print. What might be the reason for

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread ennidhi
That was nitpicking too. I didn't like you setting the widths to 0 in order to remove the border. What do you mean by this statement? Do you mean not to set the borders with this method? I have one more problem with the code: I know from the iText study to use writeselectedrows or

Re: [iText-questions] Table lines appearing bold sometimes

2009-12-16 Thread 1T3XT info
ennidhi wrote: That was nitpicking too. I didn't like you setting the widths to 0 in order to remove the border. What do you mean by this statement? Do you mean not to set the borders with this method? Did you read my initial answer? you can use setBorder(Rectangle.BOTTOM) Instead of