[iText-questions] How to copy particular field to new Pdf

2003-06-17 Thread KuMi

(B
(B
(BHello all,
(B 
(BDoes anyone know how to copy a particular 
(Bfield out of all fields in original
(BPDF file to destiation PDF file 
(B?
(B 
(BI know there is a 
(B"writer.copyAcroForm(reader)", but this copies all field.
(B 
(BIf someone know how, please let me 
(Bknow.
(B 
(BThanks in advance
(B 
(BKuMi

Re: [iText-questions] About CJK OpneType font embed

2003-03-02 Thread KuMi
Hello Paulo,

Thank you for answering my question.
Your example "cff_font.java" using "Liz.otf" embeds CFF outlines
to generated PDF.
So I had expectations of supporting CJK OpenType with CFF
outlines embedding.

Bestregards,
KuMi

> If you are referring to the OTF fonts with the glyph data in CFF format I'm
> not going to support it anytime soon. That would require type1 subsetting
> and it's a lot of work and study because I know nothing about it.
> Fonts with TT glyphs, usually with extension TTF, can be embedded already
> with iText even for CJK with Identity-H encoding.
> 
> Best Regards,
> Paulo Soares
> 
>> -Original Message-
>> From: Kumata Mitsugu [SMTP:[EMAIL PROTECTED]
>> Sent: Friday, February 28, 2003 12:57
>> To: [EMAIL PROTECTED]
>> Subject: [iText-questions] About CJK OpneType font embed
>> 
>> Hello all,
>> 
>> iText can embed European character OpenType font,
>> but cannot CJK OpenType font.
>> 
>> I would like to know if iText is going to support it.
>> 
>> Best regards,
>> KuMi
>> 
>> 
>> 
>> ---
>> This sf.net email is sponsored by:ThinkGeek
>> Welcome to geek heaven.
>> http://thinkgeek.com/sf
>> ___
>> iText-questions mailing list
>> [EMAIL PROTECTED]
>> https://lists.sourceforge.net/lists/listinfo/itext-questions
> 



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


[iText-questions] Glyph Substitution of Japanese text

2003-02-09 Thread KuMi



Hello all,
 
I hava a question about Japanese vertical 
text.
I know iText support vertical text but 
when drawing Japanse 
vertically, 
actually some glyphs, for example punctuation 
character,  must be 
substituted.
When using PS font or CFF OpenType font with 
UniJIS-UCS2-V
they are successfully substituted, but they are 
not when using 
TrueType with Identity_V.
Is there any future plan to support glyph 
substitution for TureType or
is there any workaround for this 
question?
 
Best regards,
KuMi
 


[iText-questions] Push button form field with javaScript action

2003-01-19 Thread KuMi



Hello all,
I would like to know how to use 
"PdfAnnotation.AA_UP", "PdfAnnotation.AA_DOWN", etc.
 
I tried
  
myButtonForm.setAction(myJsAction);
and got pdf I expected.
 
But
  
myButtonForm.setAdditionalActions(PdfAnnotation.AA_UP, myJsAction);
generates pdf with button that nothing 
happens when I click it.
 
Any work around or suggestions would be 
helpful.
 
Regards,
KuMi


[iText-questions] Add content to copied pdf

2003-01-09 Thread KuMi



Hello all,
 
It seems to me that additional content 
cannot be added to copied pdf with PdfCopy.java.
Is it possible?
 
KuMi


[iText-questions] About form field

2003-01-06 Thread KuMi



Hello all,
 
I hava a couple of question about 
PdfFormField.
Any work around or suggestions would be 
helpful.
 
I am trying to create a password-type text 
form field with border and fill.
My code is like this;
  ...
  field.setMKBorderColor( new 
GrayColor(0.5f) );  field.setMKBackgroundColor( new GrayColor(0.8f) 
);
  ...
 
But generated PDF file does not show 
border line nor background color on screen, 
but border and fill property of the field 
are checked.
PDF source is like this;

  
...
  4 0 obj    
<  /Resources 
<> /ProcSet [/PDF 
/Text]>>  /Subtype 
/Form  /Length 
89  /FormType 
1  /BBox [0 0 171 
19]  /Type /XObject    
>>    stream    /Tx BMC q 2 2 167 15 
re W n BT /F1 12 Tf 0 g 1 0 0 1 4 5 Tm 
    (Some start text)Tj ET 
Q EMC     endstream  endobj

  ...
 
I added by hand something 
like
  "0.8 g 0 0 171 19 re f 0.5 G 1 w 
0.5 0.5 170 18 re s"
to stream for border and fill, 
and got the right PDF.
So my question is, is there any iText 
method that gives me the same result?
 
One other question, I tried the following code to create a password 
field;
  PdfFormField field = 
PdfFormField.createTextField(writer, false, true, 0);
But I cannot get the field with password 
property on.
Is there anything I should do other than 
this code to make password field?
 
Thank you in advance.
 
KuMi
 
 
 
 
 
 
 
 


[iText-questions] about PdfFormField.setUserName()

2002-12-16 Thread KuMi



Hello all,
 
I have a question about 
PdfFormField.setUserName(String s).
When the argument of this method 
is Japanese, Acrobat does not show text as I expected.
I got only square mark.
Does anyone have workaround of this 
problem?
Thanks in advance.
 
kuMi


[iText-questions] Form field with JavaScript action

2002-12-05 Thread KuMi



Hello all,
 
Is there a way to create a form field with 
JavaScript triggered by mouse action 
such as mounseEnter, mouseDown, 
etc?
 
Thank you in 
advance,


[iText-questions] Form field with short description

2002-12-05 Thread KuMi



Hello all,
 
I would like to know if iText can create 
form field with "Short Description".
If it's possible, please let me know 
how.
 
Best regards,
KuMi


[iText-questions] view on screen and not print

2002-10-24 Thread KuMi



Hello all,
 
I want my form filed to be printed 
but not viewed on screen.
I tried "PdfAnnotation.FLAGS_INVISIBLE" 
and "PdfAnnotation.FLAGS_NOVIEW",
but generated PDF file has the 
same property (no view and no print).
Please someone let me know how 
to get the right result.
 
Thank you,


[iText-questions] How to create icon-only-button field

2002-07-29 Thread KuMi



Hello all,
 
I would like to know how to create an icon-only button 
field.
I know there are PdfAcroForm and PdfFormField, but I don't 
understand how to create it specifically.
 
Thank you in advance.
 
Best Regards,
KuMi


[iText-questions] How to specify FITB

2002-07-14 Thread KuMi



Hello all,
 
I want my generated PDF to fit in window vertically and 
horizontally when it will open.
I know there are PdfWriter.setOpneAction() and 
PdfDestination.FITB, ..
But I don't understand how to use them.
Please someone let me know how to apply 
FITB to my PDF as an OpenAction.
 
Thank you in advance.
 
Best regards,
KuMi
 


[iText-questions] text field with backgraound color

2002-07-02 Thread KuMi



Hello all,
 
Is it possible to create text field with background 
color?
I looked through java doc, but I could't find the method to 
achieve it.
If it's possible, please let me know how to do 
it.
 
thank you in advance
 
Best Regards,
KuMi


[iText-questions] problem of form field with japanese font

2002-07-01 Thread KuMi



Hello all,
 
I hava a problem of form field with japanese 
font.(HeiseiMin-W3)
After generating PDF with iText, when I click on a text field 
default text disappears, and then click outside the field the text comes 
back.
This problem does not happen with 1 byte font like 
helvetica.
 
Any suggestion to overcome this problem?
 
Best regards,
KuMi
 
 


[iText-questions] about OpenType font

2002-06-24 Thread KuMi
Hello all,

I would like to know if latest version (1.00) of iText support CJK OpenType
font other than fonts in Asian font pack.

Best regard,
KuMi



---
Sponsored by:
ThinkGeek at http://www.ThinkGeek.com/
___
iText-questions mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/itext-questions


[iText-questions] about "TJ" operator

2002-04-22 Thread KuMi
Hi,

I want to precisely adjust the space between two characters with "TJ"
operator.
Which class and method should I use ?

Regards, KuMi


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


[iText-questions] about TJ operator

2002-04-22 Thread KuMi
Hi,

I want to precisely adjust the space between two characters with "TJ"
operator.
Which class and method shoud I use.

Regards, KuMi


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


[iText-questions] about "TJ" operator

2002-04-22 Thread KuMi
Hi,

I want to precisely adjust the space between two characters with "TJ"
operator.
Which class and method should I use ?

Regards, KuMi


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