Re: [iText-questions] Header footer

2013-06-30 Thread 1T3XT BVBA
On 30/06/2013 21:53, manolis prekas wrote: Hello I am trying to add header and footer but when i add this code HeaderFooter header = new HeaderFooter(new Phrase("Add Header Part Here"), false); Does not recognise the HeaderFooter. Which library i should add to recognize that to recognise it?

[iText-questions] Header footer

2013-06-30 Thread manolis prekas
Hello I am trying to add header and footer but when i add this code HeaderFooter header = new HeaderFooter(new Phrase("Add Header Part Here"), false); Does not recognise the HeaderFooter. Which library i should add to recognize that to recognise it? Thank you

Re: [iText-questions] Header position wrong after switching from A4 Landscape to Portrait

2012-11-07 Thread iText Info
Op 7/11/2012 13:44, Craig Poxon schreef: Ok, trying again Firstly, I'm using DroidText (http://code.google.com/p/droidtext/) the Android port of iText 2.17. Er... As I've been trying to explain many times on Stackoverflow, we do not endorse DroidText. We don't appreciate the fact that so

[iText-questions] Header position wrong after switching from A4 Landscape to Portrait

2012-11-07 Thread Craig Poxon
Ok, trying again Firstly, I'm using DroidText (http://code.google.com/p/droidtext/) the Android port of iText 2.17. I have mixed pagesize documents in my App. starting off with a rotated (landscape) page and occasionally switching to portrait for one page before switching back again. Every pa

[iText-questions] Header position wrong after switching from A4 Landscape to Portrait

2012-11-07 Thread Craig Poxon
Firstly, I'm using DroidText (http://code.google.com/p/droidtext/) the Android port of iText 2.17. I have mixed pagesize documents in my App. starting off with a rotated (landscape) page and occasionally switching to portrait for one page before switching back again. Every page has a header and a

Re: [iText-questions] Header problem adding a table which spans multiple pages using table.setComplete(false)

2012-11-01 Thread 1T3XT BVBA
On 31/10/2012 8:34, Mark Smith wrote: Hi We have run into a problem using table.setComplete(false) to efficiently add a table that spans multiple pages. This causes the table header to be missing from some pages. The problem appears to occur when the last row added before calling document.ad

Re: [iText-questions] Header problem adding a table which spans multiple pages using table.setComplete(false)

2012-10-31 Thread iText Info
Op 31/10/2012 8:34, Mark Smith schreef: This works as expected for itext versions before 5.1.0 but doesn't for the latest versions. Is this a bug, or am I missing something? This is a serious indication that a bug was introduced after iText 5.1.0 ---

[iText-questions] Header problem adding a table which spans multiple pages using table.setComplete(false)

2012-10-31 Thread Mark Smith
Hi We have run into a problem using table.setComplete(false) to efficiently add a table that spans multiple pages. This causes the table header to be missing from some pages. The problem appears to occur when the last row added before calling document.add(table) is the last row in a page, so th

Re: [iText-questions] Header with newline chunk

2010-10-23 Thread 1T3XT info
On 22/10/2010 14:31, Jason Hilton wrote: > > Is there any reference in the First Edition? If you own the first edition, read chapter 7. -- This answer is provided by 1T3XT BVBA http://www.1t3xt.com/ - http://www.1t3xt.info -

Re: [iText-questions] Header with newline chunk

2010-10-23 Thread Jason Hilton
Is there any reference in the First Edition? I'll work on the standalone example. -- View this message in context: http://itext-general.2136553.n4.nabble.com/Header-with-newline-chunk-tp3006147p3007113.html Sent from the iText - General mailing list archive at Nabble.com.

Re: [iText-questions] Header with newline chunk

2010-10-21 Thread 1T3XT info
On 21/10/2010 21:23, Jason Hilton wrote: > > I'm trying to add a multiline header to my pdf pages, but everything I have > tried seems to fail. I am using the ColumnText.ShowTextAligned method to > create teh text content of my header. I've tried submitting a phrase > containing multiple chunks (

[iText-questions] Header with newline chunk

2010-10-21 Thread Jason Hilton
I'm trying to add a multiline header to my pdf pages, but everything I have tried seems to fail. I am using the ColumnText.ShowTextAligned method to create teh text content of my header. I've tried submitting a phrase containing multiple chunks (with new line chunks in the phrase), but only the

Re: [iText-questions] Header through PageEvent, need to modify text per "chapter"

2010-04-21 Thread Paulo Soares
, 2010 8:29 PM Subject: [iText-questions] Header through PageEvent, need to modify text per "chapter" I've been trying different approaches to this problem for a few days, but keep running into dead ends. I'll use some familiar objects to lay out my problem: I have O

[iText-questions] Header through PageEvent, need to modify text per "chapter"

2010-04-21 Thread [email protected]
I've been trying different approaches to this problem for a few days, but keep running into dead ends. I'll use some familiar objects to lay out my problem: I have Orders and Line Items. I'm printing a document of all Orders for a given day (a nightly report). Each Order has many Line Items, so

Re: [iText-questions] Header issues

2009-05-14 Thread 1T3XT info
Sumner, Jeff wrote: > It looks like headers should be generated in the onEndPage method > instead of onStartPage. That's correct. > First, as I generate body text of the document, I’d need to set the top > margin based on the page number. If I’m on page 1, I need 3.5 inches > for the header.

[iText-questions] Header issues

2009-05-13 Thread Sumner, Jeff
Hello, I'm a relatively new user of iText, and I'm very happy to have it available. I'm running into an issue, however. I need to create a document that has a rather large header. It is several lines long, and it's displayed in a tabular format. I have this working using three PdfPTables (y

Re: [iText-questions] Header changing

2008-05-19 Thread 1T3XT info
barik wrote: > I want to set different headers for PdfTable in each new pages.The conditions > are not fixed Add (a) member variable(s) with getter(s)/setter(s) to your page event. Change the(se) member variable(s) with the setter(s) if the conditions change. Use the getter(s) in the onEndPa

[iText-questions] Header changing

2008-05-19 Thread barik
I want to set different headers for PdfTable in each new pages.The conditions are not fixed -- View this message in context: http://www.nabble.com/Header-changing-tp17312097p17312097.html Sent from the iText - General mailing list archive at Nabble.com.

Re: [iText-questions] Header Footer with iText on JSP

2008-03-13 Thread davidc2
If you need to do it through Java, one option you have is to do it like they show here: http://itextdocs.lowagie.com/tutorial/directcontent/pageevents/index.php For Java you can find plenty of details on the web, jsp is a little trickier. dshah wrote: > > I have been struggling with this issue

Re: [iText-questions] Header Footer with iText on JSP

2008-03-11 Thread dshah
I have been struggling with this issue. I have a huge header that I need repeated for every page in which a PdfPTable can spill over into another page. I have build a header table so that I can format it the way I need it which includes a GIF image. How do I use HeaderFooter and setHeader to

Re: [iText-questions] Header Footer with iText on JSP

2008-03-04 Thread davidc2
Ok I managed to do this with the following code: //Header Phrase phrase = new Phrase (-16); phrase.add(table); HeaderFooter header = new HeaderFooter(phrase, false); header.setBorder(0); header.setAlignment(Paragraph.ALIGN_CENTER); document.s

Re: [iText-questions] Header Footer with iText on JSP

2008-03-04 Thread davidc2
It's too different for a jsp. I was looking into watermarks, and the code on a jsp page could be very different from a java class file. This works: HeaderFooter header = new HeaderFooter(new Phrase("Header Header Header", false); header.setBorder(0); header.setAlignment(Paragraph.ALIGN_CENTER);

Re: [iText-questions] Header Footer with iText on JSP

2008-03-03 Thread davidc2
I saw that, and it's the same code that's on iText by example page but how do I change it so it works on a jsp page? mister bean wrote: > > See the book, starting at p. 432. There's an example of exactly what > you're looking to do. > > --mr.bean > > > davidc2 wrote: >> >> Hey, >> >> I'm

Re: [iText-questions] Header Footer with iText on JSP

2008-03-01 Thread mister bean
See the book, starting at p. 432. There's an example of exactly what you're looking to do. --mr.bean davidc2 wrote: > > Hey, > > I'm trying to use a PdfPTable table as a header, but I'm not able to... > > I'm using > PdfPTable table = new PdfPTable(3); > on which I'm adding a bunch of cells

[iText-questions] Header Footer with iText on JSP

2008-03-01 Thread davidc2
Hey, I'm trying to use a PdfPTable table as a header, but I'm not able to... I'm using PdfPTable table = new PdfPTable(3); on which I'm adding a bunch of cells, and it works, as long as I'm adding it to the Document (document.add(table);) But the only way I'm been able to have a header and a fo

[iText-questions] Header spacing

2007-06-21 Thread Patrick Mugabe
Hi all, I have an image for my header and footer. The problem I am having is that there is no spacing between the start of the page and the image. I have tried using header.setSpacingBefore() for the PdfPTable that I am using to attach header but I don't seem to get it (see attached

[iText-questions] Header

2007-06-20 Thread THOMAS, MARVIN
I am creating a PDF from a servlet and I am trying to figure out how to set the header for the top of the output as far as the title on internet explorer where in regular servlet you would do the following for a Hello WWW title. import java.io.*; import javax.servlet.*; import javax.servle

Re: [iText-questions] Header footer, or long line

2007-06-12 Thread Bruno Lowagie
Michael Clayton wrote: > Hi, > > i would like to underline the first line of text in my document. I > want the line to span across the entire width of the page. How do you > do this? I'm not sure how you define a line. Suppose you have: Quick brown fox jumps over the lazy dog. What is the

[iText-questions] Header footer, or long line

2007-06-12 Thread Michael Clayton
Hi, i would like to underline the first line of text in my document. I want the line to span across the entire width of the page. How do you do this? Mike - This SF.net email is sponsored by DB2 Express Download DB2 Ex

Re: [iText-questions] Header Cell Problem.

2007-06-04 Thread Bruno Lowagie (iText)
sunil.belurgikar wrote: > will Appreciate any help on this. I probably don't understand the question, but have you looked at the bonus example TablesInColumns? http://itext.ugent.be/itext-in-action/chapter.php?chapter=6#bonus By combining PdfPTable with ColumnText, you can finetune your design. Fo

[iText-questions] Header Cell Problem.

2007-06-04 Thread sunil.belurgikar
I am wrting a PdFpTable to document. This PdFTable has many pdftables as Pdfpcells,which are added in a for loop. Table should display continuously so I am using setSplitLate(false) on all the PdFpTable . In Inner PdfTable, the first row is like a Header (setheader method isn't there for PDFPcel

Re: [iText-questions] Header/Footer set/get size/position

2007-05-04 Thread Paulo Soares
It's all in tutorial and in the book. Paulo - Original Message - From: "FrenchUser" <[EMAIL PROTECTED]> To: Sent: Friday, May 04, 2007 12:38 PM Subject: Re: [iText-questions] Header/Footer set/get size/position > > Can you give me an exemple because I don

Re: [iText-questions] Header/Footer set/get size/position

2007-05-04 Thread FrenchUser
PROTECTED] On >> Behalf Of FrenchUser >> Sent: Friday, May 04, 2007 9:33 AM >> To: [email protected] >> Subject: [iText-questions] Header/Footer set/get size/position >> >> >> Hi, >> >> I Have a Table wich contain "y&quo

Re: [iText-questions] Header/Footer set/get size/position

2007-05-04 Thread Paulo Soares
You must use page events and PdfPTable. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of FrenchUser > Sent: Friday, May 04, 2007 9:33 AM > To: [email protected] > Subject: [iText-questions] Heade

[iText-questions] Header/Footer set/get size/position

2007-05-04 Thread FrenchUser
Hi, I Have a Table wich contain "y" rows and "x" columns, "x" and "y" are unknow, I want to set a Table wich fit only one page, with same rows height, and same columns width. So I calculate the rows.height like that : TableHeight = document.size.height - document.margin.top - document.

Re: [iText-questions] Header & Footer in Web Application...

2007-03-03 Thread Bruno Lowagie
Versoft wrote: > I purchased the bookiText in action, it says we should > extend our class to PdfPageEventHelper which i cant do because my class is > already extending Action class. The book advises to extend the class PdfPageEventHelper, because that is easier than implementing the page event in

Re: [iText-questions] Header/footer problem with merging existing rtf

2007-03-02 Thread Mark Hall
Hi, sorry for the long delay in answering, I've been offline. On Friday 23 February 2007 19:30, Garcia, Daniel NMN wrote: > How can I merge this existing rtf file without changing the > footer/header of my destination document? This is a tricky situation. When you merge the complete document, the

[iText-questions] Header & Footer in Web Application...

2007-03-02 Thread Versoft
Hi Friends, Appreciate all for helping in my previous problem. This time i need to add header and footer to my PDF output. This is my attached... The problem is the header and footer only on the last page. What do i do to get it all the pages. I purchased the bookiText in action, it says we sh

[iText-questions] Header/footer problem with merging existing rtf

2007-02-23 Thread Garcia, Daniel NMN
I have been able to have different footers and headers in my rtf document, the first page is different, all the rest are the same. As part of my document I need to import an existing rtf document into it. As soon as I import the existing document one of two things happen: -If existing document has

Re: [iText-questions] Header problem

2007-01-04 Thread Bruno Lowagie
Henry Lu wrote: > The header has three rows. The header is overlapped with the contents. That's because you haven't defined a document margin that leaves sufficient space for the header. > How to fix this problem. Create a document with a bigger margin. Either you try to obtain the needed hei

[iText-questions] Header problem

2007-01-03 Thread Henry Lu
I have code: public class ReportBuilderFactory extends PdfPageEventHelper { /** The Phrase that will be added as the header of the document. */ protected PdfPTable header; /** The PdfPTable that will be added as the footer of the document. */ protected PdfPTable footer; pu

Re: [iText-questions] Header or Footer only in the last page

2006-12-29 Thread Mark Hall
On Friday 29 December 2006 13:55, GAMBELLI Raffaele wrote: > In the next release will it be possible insert another constant to manage > this request? No. The reason being that the RTF format does not support this. If you know where the last page starts you can use a Chapter for that and set a he

[iText-questions] Header or Footer only in the last page

2006-12-29 Thread GAMBELLI Raffaele
Hi all, I need to provide, in RTF generation, the capability of putting header and/or footer ONLY IN THE LAST PAGE but as I seen in the documentation, now this capability is provided for: * com.lowagie.text.rtf.headerfooter.RtfHeaderFooter.DISPLAY_FIRST_PAGE * com.lowagie.text.rtf.he

Re: [iText-questions] header and footer in pdf

2006-12-03 Thread seanka
> > Hi I am new to java and to iText. > > I am making an application in java where I am generating a PDF using > iText. > I am facing some problem with the changing of font size within the > table.The > rows in the table change dynamically. > I can change the other font normally by FontFactory but

Re: [iText-questions] header and footer in pdf

2006-12-03 Thread Bruno Lowagie
Sheen wrote: > I am facing some problem with the changing of font size within the table. You add elements like Phrase, Paragraph,... to a PdfPCell. These elements can have different fonts and/or font sizes. It's all explained in the tutorial and in the book. > The rows in the table change dynamic

[iText-questions] header and footer in pdf

2006-12-03 Thread Sheen
Hi I am new to java and to iText. I am making an application in java where I am generating a PDF using iText. I am facing some problem with the changing of font size within the table.The rows in the table change dynamically. I can change the other font normally by FontFactory but the same I can

[iText-questions] Header footer with images

2006-10-30 Thread sachit dahal
Hi everyone I am trying to place image header and footer on every page of a pdf document for that i wrote the following code With this i am able to place header footer images on the first page only to repeat the process through the pages i am suggested to use onEndPage event. But i couldnot fin

[iText-questions] Header problem

2006-10-24 Thread Patrick Mugabe
I am adding a header and footer to my PDF document. When it rolls to the next page the footer is added but the header isn't. The header is an image and it appears on the first page. On the next page it adds double lines with text in it. I don't know what's causing that. It displays the following ch

Re: [iText-questions] Header Footer Problem

2006-10-20 Thread Paulo Soares
Look for page events in the tutorial. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Sachit Dahal > Sent: Friday, October 20, 2006 12:48 PM > To: [email protected] > Subject: [iText-questions]

[iText-questions] Header Footer Problem

2006-10-20 Thread Sachit Dahal
  I can see that i can add Text header and Text footer to a PDF Document, Similarly I can Place images in the PDF     But how can i put an image to Header / footer so that they can be displayed on each page   when I have a designer Generated PDF(With Header and Footer)  and tried to open th

Re: [iText-questions] header and footer when creating pdf documents

2006-10-11 Thread Paulo Soares
Look for page events in the tutorial. Paulo > -Original Message- > From: James Farren [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 11, 2006 9:13 AM > To: Paulo Soares > Cc: [email protected] > Subject: header and footer when creating pdf documents > > Hi! >

[iText-questions] header and footer when creating pdf documents

2006-10-11 Thread James Farren
Hi!Is there a built-in support for header and footer in creation of PDF documents?Thanks!JF - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to ma

Re: [iText-questions] Header/Footer Question?

2006-07-24 Thread mcevikce
Never mind I just realized we are passing the PdfContentByte to table.writeSelectedRows. Thank you for your help. -- View this message in context: http://www.nabble.com/Header-Footer-Question--tf1993704.html#a5473007 Sent from the iText - General forum at Nabble.com.

Re: [iText-questions] Header/Footer Question?

2006-07-24 Thread mcevikce
I am sorry I am new to this. Example shows that footer and header is added to document maybe I am missing something. Assuming I get the PdfContentByte from writer.getDirectContent() then how do I add table to content afterwards? -- View this message in context: http://www.nabble.com/Header-Foote

Re: [iText-questions] Header/Footer Question?

2006-07-24 Thread Paulo Soares
You can't use Document.add() in a page event. It must all be placed at absolute positions in PdfContentByte. Paulo - Original Message - From: "mcevikce" <[EMAIL PROTECTED]> To: Sent: Monday, July 24, 2006 6:18 PM Subject: [iText-questions] Header/Footer Question?

[iText-questions] Header/Footer Question?

2006-07-24 Thread mcevikce
I am trying to add header and footer to each page in my document but facing two issues with it. I have followed the tutorial and extended PdfPageEventHelper class. 1-) When I add just the footer, the footer is addedd to begining and the end of the page. 2-) When I try to add the title I get st

Re: [iText-questions] Header and Footer

2006-07-16 Thread Bruno Lowagie
Zhi Ren wrote: >Hi, > >I have a question: in iText, PdfDocument class has two >functions: setHeader(HeaderFooter header) and >setFooter(HeaderFooter footer), I guess I can use the >functions to add header/footer into a PDF document. >But, in iText website, you use PdfPTable and EndPage >event to

[iText-questions] Header and Footer

2006-07-15 Thread Zhi Ren
Hi, I have a question: in iText, PdfDocument class has two functions: setHeader(HeaderFooter header) and setFooter(HeaderFooter footer), I guess I can use the functions to add header/footer into a PDF document. But, in iText website, you use PdfPTable and EndPage event to add header and footer.

[iText-questions] Header not found when using threads / piped streams

2006-06-04 Thread junk
When I run the code below I get an IOException - Header signature not found. The reason I'm using that seperate thread is because I'm not using the FileOutputStream in my actual app. I'm using the Piped In/Out Streams (the commented lines). What I'm trying to do is to add some things to an exist

Re: [iText-questions] Header/Footer/Table interactions

2006-06-02 Thread Bill Zwicky
bruno lowagie.com> writes: > OK, if you need to create PDF and RTF using the same code, then you need > class Table or SimpleTable. Ok, but what about the bugs? The problems demonstrated by my posted sample are now showing up in the production reports. -Bill __

[iText-questions] Header Footer on first page

2006-05-27 Thread Deepti Nair
  Hi,   The header and footer is automatically disabled on the first page. Could any of you tell me how to display it on the first page as well.   Thanks, Deepti

Re: [iText-questions] Header/Footer/Table interactions

2006-05-24 Thread Bruno Lowagie
Zwicky, William R ERDC-CERL-IL Contractor wrote: I'm having multiple problems trying to insert a table into my document. I've included a sample to demonstrate most of them, but there's one I can't reproduce. If you run the sample below, you'll see the following bugs: You are using class Ta

[iText-questions] Header/Footer/Table interactions

2006-05-24 Thread Zwicky, William R ERDC-CERL-IL Contractor
I'm having multiple problems trying to insert a table into my document. I've included a sample to demonstrate most of them, but there's one I can't reproduce. If you run the sample below, you'll see the following bugs: - Header and footer are missing from the first page. Since no content was ad

Re: [iText-questions] header/footer using endpage event (Resolved)

2006-02-14 Thread Bruno Lowagie
Rumpa Giri wrote: Found the problem. The FontFactory code was the culprit, silly cut-paste error was causing the font to get a strikethrough. BTW, the ITEXT library is pretty cool. We used JASPER reports earlier, thinking of switching to ITEXT. JasperReports uses iText for PDF generation,

Re: [iText-questions] header/footer using endpage event (Resolved)

2006-02-14 Thread Rumpa Giri
Found the problem. The FontFactory code was the culprit, silly cut-paste error was causing the font to get a strikethrough.   BTW, the ITEXT library is pretty cool. We used JASPER reports earlier, thinking of switching to ITEXT.   Thanks, Rumpa GiriRumpa Giri <[EMAIL PROTECTED]> wrote:On

Re: [iText-questions] header/footer using endpage event (Found the source not sure why though)

2006-02-14 Thread Rumpa Giri
On removing the FontFactory.getFont the strikethroughs are gone. But we do want a specific font to be there. How do I enforce a font type?   regards, Rumpa GiriRumpa Giri <[EMAIL PROTECTED]> wrote: Anyone?Rumpa Giri <[EMAIL PROTECTED]> wrote: I am 3 day old to ITEXT library. I went through

Re: [iText-questions] header/footer using endpage event (Anybody?)

2006-02-14 Thread Rumpa Giri
Anyone?Rumpa Giri <[EMAIL PROTECTED]> wrote:I am 3 day old to ITEXT library. I went through the tutorial. I followed the example EndPage.java to create the header/footer.   The header is a 2 X 2 table. Footer is 1 X 3 table. In the header somehow the second row, first cell data is getting un

[iText-questions] header/footer using endpage event

2006-02-13 Thread Rumpa Giri
I am 3 day old to ITEXT library. I went through the tutorial. I followed the example EndPage.java to create the header/footer.   The header is a 2 X 2 table. Footer is 1 X 3 table. In the header somehow the second row, first cell data is getting underlined and strike through. And all 3 cell data

Re: [iText-questions] Header Issue - Line Space

2005-06-14 Thread bruno
leo wrote: Hi, I am trying to print some text on the header of the page. For that I am using the HeaderFooter class. I am using the document.setHeader(HeaderFooter) method. I am adding a Phrase to the HeaderFooter object.This method prints the header on the page, but the issue is the line sp

[iText-questions] Header Issue - Line Space

2005-06-13 Thread leo
Hi, I am trying to print some text on the header of the page. For that I am using the HeaderFooter class. I am using the document.setHeader(HeaderFooter) method. I am adding a Phrase to the HeaderFooter object.This method prints the header on the page, but the issue is the line space between th

Re: [iText-questions] Header

2005-05-12 Thread Bruno Lowagie
Samatha Boda wrote: Hi, Can you please clarify my doubt? How can I display some header text in all pages other than front page. If I use onendpage to display it will also display in the first page, but I don't want to display in the first page. In onEndPage a PdfWriter object writer is passe

[iText-questions] Header

2005-05-12 Thread Samatha Boda
Hi,   Can you please clarify my doubt? How can I display some header text in all pages other than front page.  If I use onendpage to display it will also display in the first page, but I don't want to display in the first page.   Thanks, Samatha Boda 309-751-6133  

[iText-questions] header with junk data

2005-01-31 Thread Kalluru Uma. Maheswar
The following header prints me "[EMAIL PROTECTED]" string instead of the image protected HeaderFooter getHeader() throws Exception { javax.swing.ImageIcon ii = new javax.swing.ImageIcon("jg.JPG"); com.lowagie.text.Image i = com.lowagie.text.Image.getInstance(ii.getImage(),null);

[iText-questions] header question

2005-01-10 Thread Ricardo Andres Medina Diaz
hello, can i create a pdf with a header containing 2 phrases and without a pagenumber?, I proved using a table but i can manage just one column alignment, so 2 phrases without a pagenumber would be perfect. greetings, Ricardo Medina. --- The SF

[iText-questions] header, footer, new page problem

2004-11-24 Thread M . Cioffi
Hi, On the first page I have inserted a pic and the pages have a header and a footer. Then unfortunately a new page with header and footer without content will be added. If I delete either the header or the footer, then the second blank page will not be added anymore. Why will a blank page be

Re: [iText-questions] header problem

2004-10-13 Thread Paulo Soares
- Original Message - From: "sachin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 13, 2004 11:48 Subject: [iText-questions] header problem > Hello again ! > > i am using PdfContentByte's showTextAligned() method to add a cust

[iText-questions] header problem

2004-10-13 Thread sachin
Hello again ! i am using PdfContentByte's showTextAligned() method to add a customer detail at a specific position. I want this detail to be printed on every page . hence i tried it to include in the header. On page number 1 , these details are coming , but on subsequent pages they aren't !!

RE: [iText-questions] Header with Sections

2004-09-01 Thread Paulo Soares
ROTECTED]> Subject: [iText-questions] Header with Sections>> Hi>> I would like to gererate a header and/or footer with tree phrases with> different alignment (left, center and right), like footers known in> W

[iText-questions] Header with Sections

2004-09-01 Thread roger . widmer
Hi I would like to gererate a header and/or footer with tree phrases with different alignment (left, center and right), like footers known in Word! Thanks. Regards Roger Widmer ___ Disclaimer: Diese Mitteilung ist nur f

RE: [iText-questions] header area

2004-08-23 Thread Paulo Soares
See the example headers_and_watermarks.java at itextpdf.sf.net. Best Regards, Paulo Soares > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of arne anka > Sent: Monday, August 23, 2004 10:24 AM > To: [EMAIL PROTECTED] > Subj

[iText-questions] header area

2004-08-23 Thread arne anka
Hi, is it possible to have a table that are repeated on every page. I have column headers and a graphic object I want to be repeated on every page. I managed to find the HeaderFooter object, but it only takes a phrase as argument. I have also tried to use the document.getPageNumber() to add the

[iText-questions] Header with table and images

2004-07-10 Thread REVELLO GIANLUIGI
Hi,   I have a problem using the itextsharp DLL. I need insert an Header and a footer with table and image. This is possible and on the instruction manual I see I need to implement an event on the page (onPageStart e onPageEnd) I find some exemple in C# but when I translate this C# in VB the Visua

[iText-questions] Header and footer

2004-07-10 Thread Revello Gianluigi
Hi, I have a problem using the itextsharp DLL. I need insert an Header and a footer with table and image. This is = possible and on the instruction manual I see I need to implement an = event on the page (onPageStart e onPageEnd) I find some exemple in C# = but when I translate this C# in VB the V

Re: [iText-questions] Header in the first page in RTF documents

2004-07-05 Thread Mark Hall
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 02 July 2004 12:27, [EMAIL PROTECTED] wrote: > I've inserted a header and footer into a document, but I want to delete > this header and footer from the first page in a RTF document. Use writer.setHasTitlePage(true); Greetings, Mark - -- Wh

[iText-questions] Header in the first page in RTF documents

2004-07-02 Thread rafavalencia
Hi, I've inserted a header and footer into a document, but I want to delete this header and footer from the first page in a RTF document. I've tried with the example Chap0401.java, but it doesn't work with RTF documents. How can I do this? Thanks -

Re: [iText-questions] Header size

2004-03-25 Thread Bruno
Quoting Richard Corn <[EMAIL PROTECTED]>: > I have added a header to my document pages and set a gray background. Looks > nice. But I'd > like the header to be smaller and I can't seem to find a way to control the > size of the header area. For more control over Headers/Footers, you really should

[iText-questions] Header size

2004-03-24 Thread Richard Corn
I have added a header to my document pages and set a gray background. Looks nice. But I'd like the header to be smaller and I can't seem to find a way to control the size of the header area. Richard Corn RAC Consulting P.O. Box 12299, Olympia, WA. 98508 USA (360) 357-9572 fax: (360) 352-8453 ema

RE: [iText-questions] header/footer text color

2004-02-17 Thread Criddle, Daniel
res; = [EMAIL PROTECTED] Subject:   <= /B> Re: [iText-questions] BIDI = examples great, yes i think = i grasp whats going on in that. i just wish i didn't have to handle these = as special cases. in any case, many thanks. - Original = Message - From: "Paulo = Soar

[iText-questions] header/footer text color

2004-02-16 Thread Bryan Stevenson
Hey All, It's relatively simple to get the current page number to output in the footer, but how can I change the color (and other font properties) for the text used in the footer (default is black)??? TIA Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Syste

[iText-questions] Header & Footer

2003-11-06 Thread berry
Hello, my question is, how can I use a color fonts for Footer or Header, if I can.   Thank You.   [EMAIL PROTECTED] Czech Republic

Re: [iText-questions] Header/footer on every page but last?

2003-07-20 Thread Paulo Soares
- Original Message - From: "Tom Kofford" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 18, 2003 23:19 Subject: [iText-questions] Header/footer on every page but last? > How can I get a footer to print on every page but the last on a > varia

[iText-questions] Header/footer on every page but last?

2003-07-18 Thread Tom Kofford
How can I get a footer to print on every page but the last on a variable-length pdf? I looked at the page events, templates, tutorials, examples, and can't seem to find a way to do this. If I add it to every page in the onEndPage() event, is there a way to remove it from the last page in the

[iText-questions] header box

2003-06-06 Thread SIMON Pascal
Hi, I need to have a box in the header but not in all width. I mean i need a box of 50% width in my header, is it possible? thanks in advance --- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the p

Re: [iText-questions] Header info - can do without unicode?

2003-03-17 Thread David Thielen
ProcessReport.getProperty( "license.name" ));      // Open the document   document.open(); ProcessReport.VERSION_MAJOR/MINOR/RELEASE are static final ints.   thanks - dave     - Original Message - From: "Paulo Soares" <[EMAIL PROTECTED]> To: "David Thiel

Re: [iText-questions] Header info - can do without unicode?

2003-03-17 Thread Paulo Soares
thol" <[EMAIL PROTECTED]>; "itext" <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 20:14 Subject: Re: [iText-questions] Header info - can do without unicode? > I'm doing real simple ascii text something like "version: 1.3". Why > would > that go to

Re: [iText-questions] Header info - can do without unicode?

2003-03-17 Thread David Thielen
Leonard Rosenthol" <[EMAIL PROTECTED]>; "David Thielen" <[EMAIL PROTECTED]>; "itext" <[EMAIL PROTECTED]> Sent: Monday, March 17, 2003 12:52 PM Subject: Re: [iText-questions] Header info - can do without unicode? > The last version only places them in Unic

Re: [iText-questions] Header info - can do without unicode?

2003-03-17 Thread Paulo Soares
ROTECTED]> Sent: Monday, March 17, 2003 18:57 Subject: Re: [iText-questions] Header info - can do without unicode? > At 11:37 AM -0700 3/17/03, David Thielen wrote: > >When I write the author and some private header fields, it puts them > >in the pdf file as unicode. But the Crea

Re: [iText-questions] Header info - can do without unicode?

2003-03-17 Thread Leonard Rosenthol
At 11:37 AM -0700 3/17/03, David Thielen wrote: When I write the author and some private header fields, it puts them in the pdf file as unicode. But the CreationDate and Author are in as ascii text. Is there any way I can get the headers I write to go as ascii? Since the PDF spec says that tho

[iText-questions] Header info - can do without unicode?

2003-03-17 Thread David Thielen
Hi;   When I write the author and some private header fields, it puts them in the pdf file as unicode. But the CreationDate and Author are in as ascii text. Is there any way I can get the headers I write to go as ascii?   thanks - dave

Re: [iText-questions] Header & Footer problems (repeated)

2003-01-31 Thread Rob Moore
: <[EMAIL PROTECTED]> To: "Rob Moore" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, January 30, 2003 5:13 PM Subject: Re: [iText-questions] Header & Footer problems (repeated) > > They will show up on the next page if you c

  1   2   >