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?
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
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
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
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
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
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
---
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
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
-
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.
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 (
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
, 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
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
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.
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
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
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.
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
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
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
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);
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
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
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
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
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
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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
>
> 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
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
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
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
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
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]
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
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!
>
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
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.
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
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?
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
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
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.
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
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
__
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
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
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
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,
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
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
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
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
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
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
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
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
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);
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
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
- 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
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 !!
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
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
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
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
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
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
-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
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
-
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
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
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
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
Hello,
my question is, how can I use a color fonts for
Footer or Header, if I can.
Thank You.
[EMAIL PROTECTED]
Czech Republic
- 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
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
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
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
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
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
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
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
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
: <[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 - 100 of 115 matches
Mail list logo