Re: [iText-questions] Special characters on input forms

2009-09-09 Thread Leonard Rosenthol
The fields in the form are too short for the font/size being used – edit the 
form.

Leonard

On 9/9/09 10:34 AM, "David Palomar"  wrote:


Hello everyone,

We have just detected a little problem when filling an AcroForm input
with text and special characters like the sequence:
"ÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\nÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\n0123456789\r\n0123456789"

We clearly see in the resulting pdf "01234.pdf" how the letters
À ... Ñ are uppercut...so, an Ñ seems to be an N ...

I think it is not directly related to IText *but* I'm just
asking it here if anyone experienced the same problem.

Thanks in advance!

PD: the sourcecode looks like:

...

try {
PdfReader reader = new PdfReader("c:/bak/lita_c.pdf");
PdfStamper stamp = new PdfStamper(reader, new

FileOutputStream("c:/bak/01234.pdf"));




AcroFields form = stamp.getAcroFields();
HashMap fields = form.getFields();
   String key;
 for (Iterator i = fields.keySet().iterator(); i.hasNext(); )
   {
key = (String) i.next();
System.out.print(key +"\n");


form.setField(key,

"ÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\nÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\n0123456789\r\n0123456789");
   }

 //loByteContent.bezierArc(1, 2, 3, 4, 5, 6);
 //stamp.insertPage(1, PageSize.A4);

   stamp.setFormFlattening(true);
 stamp.setFullCompression();
   stamp.close();
}
catch (Exception de) {
de.printStackTrace();
}

...




--
Leonard Rosenthol
PDF Standards Architect
Adobe Systems

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

[iText-questions] Special characters on input forms

2009-09-09 Thread David Palomar
Hello everyone,

We have just detected a little problem when filling an AcroForm input
with text and special characters like the sequence:
"ÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\nÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\n0123456789\r\n0123456789"

We clearly see in the resulting pdf "01234.pdf" how the letters
À ... Ñ are uppercut...so, an Ñ seems to be an N ...

I think it is not directly related to IText *but* I'm just
asking it here if anyone experienced the same problem.

Thanks in advance!

PD: the sourcecode looks like:

...

try {
PdfReader reader = new PdfReader("c:/bak/lita_c.pdf");

PdfStamper stamp = new PdfStamper(reader, new

FileOutputStream("c:/bak/01234.pdf"));




AcroFields form = stamp.getAcroFields();
HashMap fields = form.getFields();
   String key;
 for (Iterator i = fields.keySet().iterator(); i.hasNext(); )
   {
key = (String) i.next();
System.out.print(key +"\n");


form.setField(key,

"ÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\nÀÈÌÒÙÁÉÍÓÚÑÑÑ\r\n0123456789\r\n0123456789");
   }

 //loByteContent.bezierArc(1, 2, 3, 4, 5, 6);
 //stamp.insertPage(1, PageSize.A4);

   stamp.setFormFlattening(true);
 stamp.setFullCompression();
   stamp.close();
}
catch (Exception de) {
de.printStackTrace();
}

...


lita_c.pdf
Description: Adobe PDF document


01234.pdf
Description: Adobe PDF document
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.1t3xt.com/docs/book.php
Check the site with examples before you ask questions: 
http://www.1t3xt.info/examples/
You can also search the keywords list: http://1t3xt.info/tutorials/keywords/

Re: [iText-questions] Special characters in info dictionary

2005-07-15 Thread Leonard Rosenthol

At 01:07 PM 7/15/2005, Paulo Soares wrote:

Last I looked there was nothing about XML in the /Info dictionary. It's
possible that with all the XML frenzy Adobe mistakenly took the /Info as
XML.


As of Acrobat 5, when they introduced XMP - there was a 
"mapping" between the XMP metadata in /Catalog/Metadata and that of 
the /Info dictionary.


With 6, that became stronger and forced the XMP to be the 
"true definitive metadata" (meaning that if you have XMP it will 
cause Acro to ignore what is in /Info).


Acrobat 7 attempts to give both XMP and /Info equal time - 
it does this in a way that is causing problems with /Info dict 
entries with & in them...



Leonard

---
Leonard Rosenthol
Chief Technical Officer  
PDF Sages, Inc.  215-938-7080 (voice)
 215-938-0880 (fax)




---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


Re: [iText-questions] Special characters in info dictionary

2005-07-15 Thread Paulo Soares
Last I looked there was nothing about XML in the /Info dictionary. It's
possible that with all the XML frenzy Adobe mistakenly took the /Info as
XML.

- Original Message - 
From: "Leonard Rosenthol" <[EMAIL PROTECTED]>
To: "Paulo Soares" <[EMAIL PROTECTED]>; "Sven Loth" <[EMAIL PROTECTED]>;

Sent: Friday, July 15, 2005 5:57 PM
Subject: RE: [iText-questions] Special characters in info dictionary


> At 10:55 AM 7/15/2005, Paulo Soares wrote:
> >Ampersand is not a special character
>
>  It is in XML - and Acrobat 7 treats things more XML-like due
> to the XMP synchronization changes made in this version...
>
>
> Leonard
>
> --
-
> Leonard Rosenthol
<mailto:[EMAIL PROTECTED]>
> Chief Technical Officer  <http://www.pdfsages.com>
> PDF Sages, Inc.  215-938-7080 (voice)
>   215-938-0880 (fax)
>
>



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Special characters in info dictionary

2005-07-15 Thread Leonard Rosenthol

At 10:55 AM 7/15/2005, Paulo Soares wrote:

Ampersand is not a special character


It is in XML - and Acrobat 7 treats things more XML-like due 
to the XMP synchronization changes made in this version...



Leonard

---
Leonard Rosenthol
Chief Technical Officer  
PDF Sages, Inc.  215-938-7080 (voice)
 215-938-0880 (fax)




---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Special characters in info dictionary

2005-07-15 Thread Paulo Soares
Ampersand is not a special character and info works with everything
including japanese. 

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On 
> Behalf Of Sven Loth
> Sent: Friday, July 15, 2005 3:42 PM
> To: itext-questions@lists.sourceforge.net
> Subject: [iText-questions] Special characters in info dictionary
> 
> Hi,
> 
> I want to set some additional Information like author, title etc. but
> special characters like ampersand do not appear in Acrobat Reader.
> 
> PdfStamper stamp = new PdfStamper(reader, new
> FileOutputStream( "stamped.pdf"));
> HashMap moreInfo = new HashMap();
> moreInfo.put("Author", "1&1 Internet AG");
> stamp.setMoreInfo(moreInfo);
> 
> I tried also unicode 
> 
> ...
> moreInfo.put("Author", "1\u00261 Internet AG");
> ...
> 
> Acrobat Reader displays "11 Internet AG"
> 
> Thanks for your help!
> 
> Sven
> 
> 
> --
> Sven Loth
> Output Management
> Billing-Systeme
> 
> ---
> 1&1 Internet AG - Elgendorfer Str. 57 - 56410 Montabaur
> Phone#  +49 2602 96 1377 - Fax#  +49 2602 96 1423
> E-Mail: [EMAIL PROTECTED] - www.1und1.de
> 
> Member of United Internet
> www.united-internet.de
> 
> 
> 
> ---
> SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> from IBM. Find simple to follow Roadmaps, straightforward articles,
> informative Webcasts and more! Get everything you need to get up to
> speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
> ___
> iText-questions mailing list
> iText-questions@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/itext-questions
> 


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


Re: [iText-questions] Special characters in info dictionary

2005-07-15 Thread Leonard Rosenthol

At 10:41 AM 7/15/2005, Sven Loth wrote:

I want to set some additional Information like author, title etc. but
special characters like ampersand do not appear in Acrobat Reader.


Reader 7, I presume?

There appears to be a bug in Acro/Reader 7 regarding 
ampersands in metadata :(.




I tried also unicode

...
moreInfo.put("Author", "1\u00261 Internet AG");
...


Not that's valid Acrobat Unicode - or iText has a bug in how 
it writes out Unicode strings to the Info dict.



Leonard

---
Leonard Rosenthol
Chief Technical Officer  
PDF Sages, Inc.  215-938-7080 (voice)
 215-938-0880 (fax)




---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


[iText-questions] Special characters in info dictionary

2005-07-15 Thread Sven Loth
Hi,

I want to set some additional Information like author, title etc. but
special characters like ampersand do not appear in Acrobat Reader.

PdfStamper stamp = new PdfStamper(reader, new
FileOutputStream( "stamped.pdf"));
HashMap moreInfo = new HashMap();
moreInfo.put("Author", "1&1 Internet AG");
stamp.setMoreInfo(moreInfo);

I tried also unicode 

...
moreInfo.put("Author", "1\u00261 Internet AG");
...

Acrobat Reader displays "11 Internet AG"

Thanks for your help!

Sven


--
Sven Loth
Output Management
Billing-Systeme

---
1&1 Internet AG - Elgendorfer Str. 57 - 56410 Montabaur
Phone#  +49 2602 96 1377 - Fax#  +49 2602 96 1423
E-Mail: [EMAIL PROTECTED] - www.1und1.de

Member of United Internet
www.united-internet.de



---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
___
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] Special characters

2004-08-19 Thread Dayal Murukutla









Hmmm…

Are you trying to generate the PDF form
and populate it OR are you trying to populate a pre generated PDF form programmatically?

There is a lot of difference as in the
latter case you can just set the field value accordingly.

 

Eg:

 

form.setField("checkbox_field",
“Yes”);

 

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Thursday, August 19, 2004 5:18 AM
To: 'Dayal Murukutla'; Whitener,
Winona; [EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

 



Could you please give a
newbie like me a little more help?






I have looked at a file generated by Acrobat
Standard and have fiddled with it some to see if I could isolate the check box
code.  Unfortunately, the code that I'm working on is in a servlet that is
tied to a database--which is making it hard to work with.





 





I'll keep taking cracks
at it, but it might be an idea for a feature in a future release?  To have
common form fields precoded or something?





 





Thanks,





Winona





-Original Message-
From: Dayal Murukutla
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 18, 2004 3:20 PM
To: Whitener, Winona;
[EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

Well why don't you insert
a check box field on the PDF form using Adobe writer and check it
programmatically. This is what I do for one of our projects.

 

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Wednesday, August 18, 2004 12:34 PM
To: 'Dayal Murukutla'; Whitener,
Winona; [EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

 



I would
ideally like to have a check box, similar to what you see on an HTML
page.  (If this is possible, could someone point out where this is
documented--I couldn't readily find it.)





 





The next
best would be to have a picture of a box--both empty and checked.





 





The next
best bet would be to fake it:  [] and [x]





 





I am
searching through the online files and am not seeing anything about putting in
checkboxes or anything like that.





 





What
ways has anyone else used?





 





Thanks,





Winona





-Original Message-
From: Dayal Murukutla
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 18, 2004 11:25 AM
To: Whitener, Winona;
[EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

By
simulation do you mean you need to check one of the boxes depending upon user
response?

If yes,
then you can definitely do this.

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Wednesday, August 18, 2004 9:44 AM
To: '[EMAIL PROTECTED]'
Subject: [iText-questions] Special
characters

 



Hi all,





 





I'm a relative newbie to iText and
am designing forms in PDF format using servlets.  I need to be able to at
least simulate a checkbox (as in, a box for the user to check when the form is
printed out).





 





Example:





Have you ever had chickenpox? 
[] yes  [] no





 





Has anyone else addressed
this?  I saw the initial letters on the Ampersand, but didn't see a reply.





 





Any and all comments welcome.





 





Thanks,





WW














RE: [iText-questions] Special characters

2004-08-19 Thread Whitener, Winona



Could 
you please give a newbie like me a little more help?
I have looked at a 
file generated by Acrobat Standard and have fiddled with it some to see if I 
could isolate the check box code.  
Unfortunately, the code that I'm working on is 
in a servlet that is tied to a database--which is making it hard to work 
with.
 
I'll 
keep taking cracks at it, but it might be an idea for a feature in a future 
release?  To have common form fields precoded or 
something?
 
Thanks,
Winona

  -Original Message-From: Dayal Murukutla 
  [mailto:[EMAIL PROTECTED]Sent: Wednesday, August 18, 2004 
  3:20 PMTo: Whitener, Winona; 
  [EMAIL PROTECTED]Subject: RE: [iText-questions] 
  Special characters
  
  Well why don't you 
  insert a check box field on the PDF form using Adobe writer and check it 
  programmatically. This is what I do for one of our 
  projects.
   
   
  -Original 
  Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Whitener, WinonaSent: Wednesday, August 18, 
  2004 12:34 
  PMTo: 'Dayal Murukutla'; Whitener, Winona; 
  [EMAIL PROTECTED]Subject: RE: [iText-questions] Special 
  characters
   
  
  I would 
  ideally like to have a check box, similar to what you see on an HTML 
  page.  (If this is possible, could someone point out where this is 
  documented--I couldn't readily find it.)
  
   
  
  The next 
  best would be to have a picture of a box--both empty and 
  checked.
  
   
  
  The next 
  best bet would be to fake it:  [] and 
  [x]
  
   
  
  I am 
  searching through the online files and am not seeing anything about putting in 
  checkboxes or anything like that.
  
   
  
  What 
  ways has anyone else used?
  
   
  
  Thanks,
  
  Winona
  
-Original 
Message-From: Dayal 
Murukutla [mailto:[EMAIL PROTECTED]Sent: Wednesday, August 18, 
2004 11:25 
AMTo: Whitener, Winona; 
[EMAIL PROTECTED]Subject: RE: [iText-questions] Special 
characters
By 
simulation do you mean you need to check one of the boxes depending upon 
user response?
If 
yes, then you can definitely do this.
 
-Original 
Message-From: 
[EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, 
WinonaSent: 
Wednesday, August 
18, 2004 9:44 
AMTo: 
    '[EMAIL PROTECTED]'Subject: [iText-questions] Special 
characters
 

Hi 
all,

 

I'm a relative newbie to iText 
and am designing forms in PDF format using servlets.  I need to be able 
to at least simulate a checkbox (as in, a box for the user to check when the 
form is printed out).

 

Example:

Have you ever had 
chickenpox?  [] yes  [] no

 

Has anyone else addressed 
this?  I saw the initial letters on the Ampersand, but didn't see a 
reply.

 

Any and all comments 
welcome.

 

Thanks,

WW


RE: [iText-questions] Special characters

2004-08-18 Thread Dayal Murukutla









Well why don’t you insert a check
box field on the PDF form using Adobe writer and check it programmatically.
This is what I do for one of our projects.

 

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Wednesday, August 18, 2004 12:34 PM
To: 'Dayal Murukutla'; Whitener,
Winona; [EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

 



I would ideally like to
have a check box, similar to what you see on an HTML page.  (If this is
possible, could someone point out where this is documented--I couldn't readily
find it.)





 





The next best would be to
have a picture of a box--both empty and checked.





 





The next best bet would
be to fake it:  [] and [x]





 





I am searching through
the online files and am not seeing anything about putting in checkboxes or
anything like that.





 





What ways has anyone else
used?





 





Thanks,





Winona





-Original Message-
From: Dayal Murukutla
[mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 18, 2004 11:25 AM
To: Whitener, Winona;
[EMAIL PROTECTED]
Subject: RE: [iText-questions]
Special characters

By simulation do you mean
you need to check one of the boxes depending upon user response?

If yes, then you can
definitely do this.

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Wednesday, August 18, 2004 9:44 AM
To: '[EMAIL PROTECTED]'
Subject: [iText-questions] Special
characters

 



Hi all,





 





I'm a relative newbie to iText and
am designing forms in PDF format using servlets.  I need to be able to at least
simulate a checkbox (as in, a box for the user to check when the form is
printed out).





 





Example:





Have you ever had chickenpox? 
[] yes  [] no





 





Has anyone else addressed
this?  I saw the initial letters on the Ampersand, but didn't see a reply.





 





Any and all comments welcome.





 





Thanks,





WW












RE: [iText-questions] Special characters

2004-08-18 Thread Whitener, Winona



I 
would ideally like to have a check box, similar to what you see on an HTML 
page.  (If this is possible, could someone point out where this is 
documented--I couldn't readily find it.)
 
The 
next best would be to have a picture of a box--both empty and 
checked.
 
The 
next best bet would be to fake it:  [] and [x]
 
I am 
searching through the online files and am not seeing anything about putting in 
checkboxes or anything like that.
 
What 
ways has anyone else used?
 
Thanks,
Winona

  -Original Message-From: Dayal Murukutla 
  [mailto:[EMAIL PROTECTED]Sent: Wednesday, August 18, 2004 
  11:25 AMTo: Whitener, Winona; 
  [EMAIL PROTECTED]Subject: RE: [iText-questions] 
  Special characters
  
  By simulation do you 
  mean you need to check one of the boxes depending upon user 
  response?
  If yes, then you can 
  definitely do this.
   
  -Original 
  Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On Behalf Of Whitener, WinonaSent: Wednesday, August 18, 2004 9:44 
  AMTo: 
  '[EMAIL PROTECTED]'Subject: [iText-questions] Special 
  characters
   
  
  Hi 
  all,
  
   
  
  I'm a relative newbie to iText and 
  am designing forms in PDF format using servlets.  I need to be able to at 
  least simulate a checkbox (as in, a box for the user to check when the form is 
  printed out).
  
   
  
  Example:
  
  Have you ever had 
  chickenpox?  [] yes  [] no
  
   
  
  Has anyone else addressed 
  this?  I saw the initial letters on the Ampersand, but didn't see a 
  reply.
  
   
  
  Any and all comments 
  welcome.
  
   
  
  Thanks,
  
  WW


RE: [iText-questions] Special characters

2004-08-18 Thread Dayal Murukutla









By simulation do you mean you need to
check one of the boxes depending upon user response?

If yes, then you can definitely do this.

 

-Original Message-
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Whitener, Winona
Sent: Wednesday, August 18, 2004
9:44 AM
To:
'[EMAIL PROTECTED]'
Subject: [iText-questions] Special
characters

 



Hi all,





 





I'm a relative newbie to iText and
am designing forms in PDF format using servlets.  I need to be able to at
least simulate a checkbox (as in, a box for the user to check when the form is
printed out).





 





Example:





Have you ever had chickenpox? 
[] yes  [] no





 





Has anyone else addressed
this?  I saw the initial letters on the Ampersand, but didn't see a reply.





 





Any and all comments welcome.





 





Thanks,





WW










[iText-questions] Special characters

2004-08-18 Thread Whitener, Winona



Hi 
all,
 
I'm a relative 
newbie to iText and am designing forms in PDF format using servlets.  I 
need to be able to at least simulate a checkbox (as in, a box for the user to 
check when the form is printed out).
 
Example:
Have you ever had 
chickenpox?  [] yes  [] no
 
Has anyone else 
addressed this?  I saw the initial letters on the Ampersand, but didn't see 
a reply.
 
Any and all comments 
welcome.
 
Thanks,
WW


RE: [iText-questions] Special characters

2004-01-15 Thread Paulo Soares
Title: RE: [iText-questions] Special characters






It would help to know if you are generating rtf, html or pdf and how.


Best Regards,

Paulo Soares


-Original Message-

From:   [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] On Behalf Of Philip Stephen Medcraft

Sent:   Wednesday, January 14, 2004 20:38

To: iText

Subject:    [iText-questions] Special characters


Hi,


Do I need to take any extra care, if I want my reports to have special 

characters like ^ ? I'm building reports in portuguese, so we have words 

like 'mês' which have these special characters. These characters are 

disapearing on my reports when I present them in a browser. Does anyone know 

why?


Thanks in advance.

Philip.



---

This SF.net email is sponsored by: Perforce Software.

Perforce is the Fast Software Configuration Management System offering

advanced branching capabilities and atomic changes on 50+ platforms.

Free Eval! http://www.perforce.com/perforce/loadprog.html

___

iText-questions mailing list

[EMAIL PROTECTED]

https://lists.sourceforge.net/lists/listinfo/itext-questions





[iText-questions] Special characters

2004-01-15 Thread Philip Stephen Medcraft
Hi,

Do I need to take any extra care, if I want my reports to have special 
characters like ^ ? I'm building reports in portuguese, so we have words 
like 'mês' which have these special characters. These characters are 
disapearing on my reports when I present them in a browser. Does anyone know 
why?

Thanks in advance.
Philip.


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


RE: [iText-questions] special characters

2003-08-01 Thread Paulo Soares
The Latin built in fonts don't have the infinity character but the Symbol
(Bfont has it. Another option is to embed a TT font that has the character
(Busing the encoding Identity-H.
(B
(BBest Regards,
(BPaulo Soares
(B
(B> -Original Message-
(B> From: Sam  Maina [SMTP:[EMAIL PROTECTED]
(B> Sent: Thursday, July 31, 2003 19:51
(B> To:   '[EMAIL PROTECTED] Sourceforge. Net'
(B> Subject:  [iText-questions] special characters
(B> 
(B> This characters are not asian. \u221E represents $B!g(J.
(B> I don't think I need asian characters. The only characters am able to
(B> display is the Greek.
(B>  
(B>  
(B> 
(B>   - Original Message - 
(B>   From: Sam Maina <mailto:[EMAIL PROTECTED]> 
(B>   To: '[EMAIL PROTECTED] Sourceforge. Net'
(B>  
(B>   Sent: Thursday, July 31, 2003 11:17 AM
(B>   Subject: [iText-questions] special characters
(B> 
(B> 
(B> 
(B>   I tried :
(B> 
(B>   document.add(new Chunk("some special characters \u221E \u2264"));
(B> And all it show is "some special characters" omitting the unicode
(B> characters.
(B> 
(B>   What more do I need to do to show these characters?
(B> 
(B>
(B> 
(B>  
(B> Sam Maina
(B> Web Developer
(B>  Knovel  Corporation
(B> (607) 773 1840 ext 670
(B> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
(B>  
(B
(B
(B---
(BThis SF.Net email sponsored by: Free pre-built ASP.NET sites including
(BData Reports, E-commerce, Portals, and Forums are available now.
(BDownload today and enter to win an XBOX or Visual Studio .NET.
(Bhttp://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
(B___
(BiText-questions mailing list
(B[EMAIL PROTECTED]
(Bhttps://lists.sourceforge.net/lists/listinfo/itext-questions

[iText-questions] special characters

2003-07-31 Thread Sam Maina
Title: Message

(B
(B
(B
(BThis characters are 
(Bnot asian. \u221E represents $B!g(J.
(BI don't 
(Bthink I need asian characters. The only characters am able to display is the 
(BGreek.
(B 
(B 
(B
(B  - Original Message - 
(B  From: 
(B  Sam Maina 
(B
(B  To: '[EMAIL PROTECTED] 
(B  Sourceforge. Net' 
(B  Sent: Thursday, July 31, 2003 11:17 
(B  AM
(B  Subject: [iText-questions] special 
(B  characters
(B  
(B  
(B  I tried :
(B  document.add(new Chunk("some special characters 
(B  \u221E \u2264")); And all it show is "some special characters" omitting 
(B  the unicode characters.
(B  What more do I need 
(B  to do to show these characters?
(B   
(B 
(BSam Maina
(BWeb Developer
(B Knovel  Corporation
(B(607) 773 1840 ext 
(B670
(B[EMAIL PROTECTED]
(B 

Re: [iText-questions] special characters

2003-07-31 Thread David Thielen
Title: Message



Do you have the asian fonts installed on your 
O/S?
 

  - Original Message - 
  From: 
  Sam Maina 

  To: '[EMAIL PROTECTED] 
  Sourceforge. Net' 
  Sent: Thursday, July 31, 2003 11:17 
  AM
  Subject: [iText-questions] special 
  characters
  
  
  I tried :
  document.add(new Chunk("some special characters 
  \u221E \u2264")); And all it show is "some special characters" omitting 
  the unicode characters.
  What more do I need 
  to do to show these characters?
   
  Sam Maina
  Web Developer
   Knovel  Corporation
  (607) 773 1840 ext 
  670
  [EMAIL PROTECTED]
   


[iText-questions] special characters

2003-07-31 Thread Sam Maina
Title: Message




I tried :
document.add(new Chunk("some special characters 
\u221E \u2264")); And all it show is "some special characters" omitting 
the unicode characters.
What more do I need to 
do to show these characters?
 
Sam Maina
Web Developer
 Knovel  Corporation
(607) 773 1840 ext 
670
[EMAIL PROTECTED]
 


Re: [iText-questions] Special Characters

2003-07-31 Thread Philipp Keller
Sam Maina wrote:
(B
(B> Can anyone tell me how I can display special characters.
(B> I am able to display only the Greek characters. For example, how can I
(B> display $B!g(B.
(B> among other symbols.
(B> Sam Maina
(B> /Web Developer/
(B> Knovel Corporation
(B> (607) 773 1840 ext 670
(B> [EMAIL PROTECTED] 
(B
(Byou can enter unicode characters in all iText elements..
(Bhave a look at
(Bhttp://www.w3.org/TR/1998/REC-html40-19980424/sgml/entities.html
(B
(Byou can enter them by "\u00a9"
(B(the first char is a backslash.. hope that is displayed rightly..)
(B
(Bgreets
(BPhilipp Keller
(B
(B
(B
(B
(B
(B---
(BThis SF.Net email sponsored by: Free pre-built ASP.NET sites including
(BData Reports, E-commerce, Portals, and Forums are available now.
(BDownload today and enter to win an XBOX or Visual Studio .NET.
(Bhttp://aspnet.click-url.com/go/psa0013ave/direct;at.aspnet_072303_01/01
(B___
(BiText-questions mailing list
(B[EMAIL PROTECTED]
(Bhttps://lists.sourceforge.net/lists/listinfo/itext-questions

[iText-questions] Special Characters

2003-07-31 Thread Sam Maina
Title: Message

(B
(B
(BCan anyone tell me 
(Bhow I can display special characters.
(BI am able to display 
(Bonly the Greek characters. For example, how can I display $B!g(J.
(Bamong other 
(Bsymbols.
(B 
(BSam Maina
(BWeb Developer
(B Knovel  Corporation
(B(607) 773 1840 ext 
(B670
(B[EMAIL PROTECTED]
(B 

Re: [iText-questions] Special characters

2002-08-16 Thread Paulo Soares

"\u" as any Unicode character.

Best Regards,
Paulo Soares

- Original Message -
From: "Stephanie Born" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, August 16, 2002 15:41
Subject: [iText-questions] Special characters


Hi Everybody!

How can I do to put special characters (Example: ü,ä,ö,ß) when I
create a PDF-file with iText?

Thanks




---
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions



[iText-questions] Special characters

2002-08-16 Thread Stephanie Born
Title: Special characters






Hi Everybody!


How can I do to put special characters (Example: ü,ä,ö,ß) when I create a PDF-file with iText?

 

Thanks