Title: 'help'


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 8:12 PM
To: [EMAIL PROTECTED]
Subject: iText-questions digest, Vol 1 #585 - 11 msgs


Send iText-questions mailing list submissions to
        [EMAIL PROTECTED]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/itext-questions
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than "Re: Contents of iText-questions digest..."


Today's Topics:

   1. unicode 3.1/hkscs support (Zhen  Cua)
   2. RE: Unicode 3.1/hkscs support (Paulo Soares)
   3. PDF Download saves the HTML page instead of PDF (Akshat Jain)
   4. Adding a Phrase in PdfPTableEvent.tableLayout() (Carsten Frewert)
   5. Line wrapping (Marc Ellison)
   6. RE: Line wrapping (Paulo Soares)
   7. page footer template using table (beginner) (morpheus Smith)
   8. barcodeEAN 8 checksum digit calculation (Dogan, Bulent)
   9. RE: barcodeEAN 8 checksum digit calculation (Paulo Soares)
  10. PdfPTable absolute positioning (Wojciech Wisniowski)
  11. RE: PdfPTable absolute positioning (Paulo Soares)

--__--__--

Message: 1
Date: Tue,  4 Jun 2002 14:47:46 +0800
From: "Zhen  Cua" <[EMAIL PROTECTED]>
Reply-To: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: [iText-questions] unicode 3.1/hkscs support

Hello all,

  I am reposting this question from the forum.
  The current CJKFont does not seem to include support for HKSCS (HongKong Supplementary character set) characters, and hence I am forced to embed a TTF. Unfortunately, the TTF does not contain support for other characters such as latin1 and basic punctuations, I've tried using MS Arial Unicode but it contains only chracters until unicode 2.0, I am generating the pdf based on the contents of the database, so it is almost impossible to pre-determine the font to be used. Is there a solution to this problem? will it be possible to modify something in the code to allow it to specify two or more fonts in a call to new Chunk() or new Phrase() such that it will automatically search the character in font2 if it is no in font1?

Thanks in advance,
Zhen


--__--__--

Message: 2
From: Paulo Soares <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>,
        [EMAIL PROTECTED]
Subject: RE: [iText-questions] Unicode 3.1/hkscs support
Date: Tue, 4 Jun 2002 11:37:03 +0100

You have three options:

- If your pdf is to be read with Acrobat 5 with the Adobe CJK font pack then all that is required is to tweak the font supplement from Adobe-CNS1-0 to Adobe-CNS1-3. I'll have this in the next release, it will still work in Acrobat 4.0 but without the new characters, of course.

- your font contains the characters from Unicode block \uff00 (Halfwidth and Fullwidth Forms). See http://www.lowagie.com/iText/faq.html#preformattedtext.

- Otherwise it's just a matter of programming although I must say that a font that doesn't include \u0020-\u007e characters is really weird. The sequence is as follows:

1 - create two fonts, the HK and TIMES for example.
2 - read the text from the database
3 - divide the text in chunks each one using a font depending on the character range. 4 - assemble the chunks into a phrase and use the phrase.

Best Regards,
Paulo Soares

> -----Original Message-----
> From: Zhen  Cua [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, June 04, 2002 7:48
> To:   [EMAIL PROTECTED]
> Subject:      [iText-questions] unicode 3.1/hkscs support
>
> Hello all,
>
>   I am reposting this question from the forum.
>   The current CJKFont does not seem to include support for HKSCS
> (HongKong Supplementary character set) characters, and hence I am
> forced to embed a TTF. Unfortunately, the TTF does not contain support
> for other characters such as latin1 and basic punctuations, I've tried
> using MS Arial Unicode but it contains only chracters until unicode
> 2.0, I am generating the pdf based on the contents of the database, so
> it is almost impossible to pre-determine the font to be used. Is there
> a solution to this problem? will it be possible to modify something in
> the code to allow it to specify two or more fonts in a call to new
> Chunk() or new Phrase() such that it will automatically search the
> character in font2 if it is no in font1?
>
> Thanks in advance,
> Zhen
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>
> _______________________________________________
> iText-questions mailing list [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions


--__--__--

Message: 3
From: Akshat Jain <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Tue, 4 Jun 2002 16:52:22 +0530
Subject: [iText-questions] PDF Download saves the HTML page instead of PDF

This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

--------------InterScan_NT_MIME_Boundary
Content-Type: multipart/alternative;
        boundary="----_=_NextPart_001_01C20BBA.18C4F9E0"

------_=_NextPart_001_01C20BBA.18C4F9E0
Content-Type: text/plain;
        charset="iso-8859-1"

HI,
I am trying to save the pdf file by popping up a Save As dialogue box. This works fine with IE 6.0 and IE 5.5 (basic) but in IE 5.5 SP1,2 the browser opens a Save as Dialogue box and saves the HTML page of the calling page, (In my case the frame-set page).

I am using the following code. Can someone help me fix this one. This is urgent please.


                document = new Document(PageSize.A4.rotate(), 10, 10, 10, 10);

                        // Create a Writer that listens to the document and writes the document into the PDF.
                        PdfWriter.getInstance(document, bytesToWrite);

                // Open the document.
                        document.open();

                        // Call method(to set data) with document and 2D array of data as arguments.

                        loadDocument();//loads the document object.

                document.close();


                response.setHeader("Expires", "-1");
                response.setContentType("application/pdf");
                          response.setHeader("Content-Disposition",
"attachment;filename="+sCompleteFileName);

                response.setContentLength(bytesToWrite.size());
                        ServletOutputStream out = response.getOutputStream();
                        bytesToWrite.writeTo(out);
                        bytesToWrite.flush();
                        out.flush();
                        bytesToWrite.close();
                        out.close();

Thanks,
Akshat Jain
 

------_=_NextPart_001_01C20BBA.18C4F9E0
Content-Type: text/html;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Diso-8859-1"> <META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version = 5.5.2653.12"> <TITLE>PDF Download saves the HTML page instead of PDF</TITLE> </HEAD> <BODY>

<P><FONT SIZE=3D2 FACE=3D"Arial">HI,</FONT>
<BR><FONT SIZE=3D2 FACE=3D"Arial">I am trying to save the pdf file by = popping up a Save As dialogue box. This works fine with IE 6.0 and IE = 5.5 (basic) but in IE 5.5 SP1,2 the browser opens a Save as Dialogue = box and saves the HTML page of the calling page, (In my case the = frame-set page).</FONT></P>

<P><FONT SIZE=3D2 FACE=3D"Arial">I am using the following code. Can = someone help me fix this one. This is urgent please.</FONT> </P> <BR> <UL><UL> <P><FONT SIZE=3D2 FACE=3D"Arial">document =3D new = Document(PageSize.A4.rotate(), 10, 10, 10, 10);</FONT> </P> </UL></UL> <P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=

sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; // Create a Writer that listens to the document and writes = the document into the PDF.</FONT> <BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=

sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; PdfWriter.getInstance(document, bytesToWrite);</FONT> </P> <UL><UL> <P><FONT SIZE=3D2 FACE=3D"Arial">// Open the document.</FONT> </UL></UL> <P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=

sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; document.open();</FONT>
</P>

<P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; // Call method(to set data) with document and 2D array of = data as arguments.</FONT> </P>

<P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; loadDocument();</FONT><FONT SIZE=3D2 FACE=3D"Arial">//loads = the document object.</FONT> </P> <UL><UL> <P><FONT SIZE=3D2 FACE=3D"Arial">document.close();</FONT>

</P>
<BR>

<P><FONT SIZE=3D2 = FACE=3D"Arial">response.setHeader(&quot;Expires&quot;, = &quot;-1&quot;);</FONT> <BR><FONT SIZE=3D2 = FACE=3D"Arial">response.setContentType(&quot;application/pdf&quot;);</FO=

NT>
</UL></UL>
<P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp; = response.setHeader(&quot;Content-Disposition&quot;, = &quot;attachment;filename=3D&quot;+sCompleteFileName);</FONT>

</P>
<UL><UL>
<P><FONT SIZE=3D2 = FACE=3D"Arial">response.setContentLength(bytesToWrite.size());</FONT>
</UL></UL>
<P><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; ServletOutputStream out =3D = response.getOutputStream();</FONT>
<BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; bytesToWrite.writeTo(out);</FONT>
<BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; bytesToWrite.flush();</FONT>
<BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; out.flush();</FONT>
<BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; bytesToWrite.close();</FONT>
<BR><FONT SIZE=3D2 = FACE=3D"Arial">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp; out.close();</FONT>
</P>

<P><FONT COLOR=3D"#000000" SIZE=3D2 FACE=3D"Arial">Thanks,<BR> </FONT><B><FONT COLOR=3D"#000000" SIZE=3D2 FACE=3D"Arial">Akshat = Jain<BR> </FONT></B><FONT SIZE=3D2 FACE=3D"Arial">&nbsp;</FONT> </P>

</BODY>
</HTML>
------_=_NextPart_001_01C20BBA.18C4F9E0--

--------------InterScan_NT_MIME_Boundary--



--__--__--

Message: 4
Date: Tue, 4 Jun 2002 14:48:45 +0200
From: Carsten Frewert <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [iText-questions] Adding a Phrase in PdfPTableEvent.tableLayout()


Hi!

I'm looking for a way to add a Phrase (or some Chunks) to a document within PdfPTableEvent.tableLayout(), so the real problem seems to be adding a Phrase or Chunks to the PdfContentByte object.

As I've only little experience with this "low level" PDF stuff, I'm in trouble ;)

I would be glad if someone had a hint for me.

TIA,
        Carsten


--__--__--

Message: 5
From: Marc Ellison <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Date: Tue, 4 Jun 2002 10:00:34 -0600
Subject: [iText-questions] Line wrapping

This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

------_=_NextPart_001_01C20BE0.F603A8D0
Content-Type: text/plain

Hi,
 
Am trying to grab info from a text area on a screen, to then show on a pdf report. However, I have a problem with unwanted carriage returns! I.e., if I typed in my text area:-

 
1
2
3
 
4
 
...it appears in my report as:-
 
1
 
2
 
3
 
 
4
 
In effect I want to be able to disable the carriage returns as it is screwing up the presentation of my data! Is this a known 'problem'? Any ideas on how I might fix this. Would really appreciate someguidance on this!

 
Regards
 
Marc
 

 
<file:///C:/Documents%20and%20Settings/MEllison/Application%20Data/Microsoft
/Signatures/www.pangaeainc.com>


------_=_NextPart_001_01C20BE0.F603A8D0
Content-Type: text/html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=US-ASCII"> <TITLE>Message</TITLE>

<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>Hi,</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial size=2>Am trying to grab
info from a text area on a screen, to then show on a pdf report. However, I have
a problem with unwanted carriage returns! I.e., if I typed in my text
area:-</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>1</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>2</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>3</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>4</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial size=2>...it appears in my
report as:-</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>1</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>2</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>3</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>4</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial size=2>In effect I want to
be able to disable the carriage returns as it is screwing up the presentation of
my data! Is this a known 'problem'? Any ideas on how I might fix this. Would
really appreciate someguidance on this!</FONT></SPAN></DIV> <DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>Regards</FONT></SPAN></DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=539565115-04062002><FONT face=Arial
size=2>Marc</FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV align=left><FONT color=#0000ff size=3>
<P align=left><FONT face=Arial color=#000000 size=2></FONT></FONT> <P><A
href=""file:///C:/Documents%20and%20Settings/MEllison/Application%20Data/Microsoft/Signatures/www.pangaeainc.com"><U><FONT

color=#0000ff size=2><FONT
face=Papyrus></FONT></U></FONT></A></P></P></DIV></BODY></HTML>

------_=_NextPart_001_01C20BE0.F603A8D0--


--__--__--

Message: 6
From: Paulo Soares <[EMAIL PROTECTED]>
To: "'Marc Ellison'" <[EMAIL PROTECTED]>,
        "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Subject: RE: [iText-questions] Line wrapping
Date: Tue, 4 Jun 2002 17:11:33 +0100

You can fix that by doing some programming. It's not that difficult to eliminate some CR from a text string.

Best Regards,
Paulo Soares

> -----Original Message-----
> From: Marc Ellison [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, June 04, 2002 17:01
> To:   '[EMAIL PROTECTED]'
> Subject:      [iText-questions] Line wrapping
>
> Hi,

> Am trying to grab info from a text area on a screen, to then show on a
> pdf report. However, I have a problem with unwanted carriage returns!
> I.e., if I typed in my text area:-

> 1
> 2
> 3

> 4

> ...it appears in my report as:-

> 1

> 2

> 3


> 4

> In effect I want to be able to disable the carriage returns as it is
> screwing up the presentation of my data! Is this a known 'problem'?
> Any ideas on how I might fix this. Would really appreciate
> someguidance on this!

> Regards

> Marc


> <file:///C:/Documents%20and%20Settings/MEllison/Application%20Data/Mic
> roso
> ft/Signatures/www.pangaeainc.com>
>


--__--__--

Message: 7
Date: Tue, 4 Jun 2002 09:14:26 -0700 (PDT)
From: morpheus Smith <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [iText-questions] page footer template using table (beginner)

hi all,
i know using pageevents (onPageEnd) i can add a
template to pdfContentByte as page footer, but i don't
know how to create a template object from a table
object i have. Any help regarding this is greatly
appriciated.
thanks
morpheus


__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com


--__--__--

Message: 8
From: "Dogan, Bulent" <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Date: Tue, 4 Jun 2002 12:32:59 -0400
Subject: [iText-questions] barcodeEAN 8 checksum digit calculation

I have tried to use the barcodeEAN class to generate barcodes in type EAN 8. I have tried to pass in codes without the checksum digit and I kept on getting the ExceptionConverter exception. I have even set the

setGenerateChecksum() to true. This didn't help either. Any suggestions?

Bulent





--__--__--

Message: 9
From: Paulo Soares <[EMAIL PROTECTED]>
To: "'Dogan, Bulent'" <[EMAIL PROTECTED]>,
        "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Subject: RE: [iText-questions] barcodeEAN 8 checksum digit calculation
Date: Tue, 4 Jun 2002 18:16:35 +0100

You must pass the 8 digits to the method. If you want to calculate the checksum use barcodeEAN.calculateEANParity(), see the javadoc. An example:

            BarcodeEAN codeEAN = new BarcodeEAN();
            codeEAN.setCodeType(codeEAN.EAN8);
            codeEAN.setCode("55123457");
            Image imageEAN = codeEAN.createImageWithBarcode(cb, null, null);

Best Regards,
Paulo Soares

> -----Original Message-----
> From: Dogan, Bulent [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, June 04, 2002 17:33
> To:   '[EMAIL PROTECTED]'
> Subject:      [iText-questions] barcodeEAN 8 checksum digit calculation
>
> I have tried to use the barcodeEAN class to generate barcodes in type
> EAN 8. I have tried to pass in codes without the checksum digit and I
> kept on getting the ExceptionConverter exception. I have even set the
> setGenerateChecksum() to true. This didn't help either. Any suggestions?
>
> Bulent
>
>
>
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>
> _______________________________________________
> iText-questions mailing list [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions


--__--__--

Message: 10
From: "Wojciech Wisniowski" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Date: Tue, 4 Jun 2002 19:54:39 +0200
Subject: [iText-questions] PdfPTable absolute positioning

Hello,

I am a new user of  the iText library.
It is very usefull for my project but I need a little help.
I'm using a PdfPTable/PdfPCell  objects to create my pdf document. But in order to complete my project I need export page layout (positions and content of cells ) to external application. I would like to get absolute position of all cells and save it to external xml file. How to do it? The methods left(), right() ... of PdfPCell objects always return 0.0. How can I solve my problem?

Thank for any help

Wojtek



--__--__--

Message: 11
From: Paulo Soares <[EMAIL PROTECTED]>
To: "'Wojciech Wisniowski'" <[EMAIL PROTECTED]>,
        [EMAIL PROTECTED]
Subject: RE: [iText-questions] PdfPTable absolute positioning
Date: Tue, 4 Jun 2002 19:09:14 +0100

Use a PdfPTableEvent to get the cell positions.

Best Regards,
Paulo Soares

> -----Original Message-----
> From: Wojciech Wisniowski [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, June 04, 2002 18:55
> To:   [EMAIL PROTECTED]
> Subject:      [iText-questions] PdfPTable absolute positioning
>
> Hello,
>
> I am a new user of  the iText library.
> It is very usefull for my project but I need a little help. I'm using
> a PdfPTable/PdfPCell  objects to create my pdf document. But in order
> to complete my project I need export page layout (positions and
> content of cells ) to external application. I would like to get
> absolute position of all cells and save it to external xml file.
> How to do it? The methods left(), right() ... of PdfPCell objects always
> return 0.0.
> How can I solve my problem?
>
> Thank for any help
>
> Wojtek
>
>
> _______________________________________________________________
>
> Don't miss the 2002 Sprint PCS Application Developer's Conference
> August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
>
> _______________________________________________
> iText-questions mailing list [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/itext-questions



--__--__--

_______________________________________________
iText-questions mailing list [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


End of iText-questions Digest

Reply via email to