Re: How to keep the table`s columns description on the next page?

2004-06-22 Thread Clay Leeds
On Jun 22, 2004, at 4:36 AM, Milen Dimitrov wrote:
   Hi,
can somebody help me with this issue:
I have a very long tables that spreads on more than 1 page, and I want 
to have the columns titles on every page. I cannot put the columns 
titles in fo:region-before because the tables are different.
Have you tried using the fo:table-header? I believe the purpose of this 
element (and similarly fo:table-footer) is to print the information on 
every page.

Hope this helps!
Web Maestro Clay
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Win-Ansi font embedding follow-up

2004-06-22 Thread Dave_S_White

Hi, 

I had asked a similar question before, but got no responses. Trying again asking a better way (hopefully). 

If I use CID encoding, the font is partially embededded, but win-ansi encoding results in the entire font being embedded ( and very large PDF's). I'm not an expert on encoding by any means, but I don't believe this is inherently part of being win-ansi encoding is it? My assumption is that whoever wrote that portion of FOP didn't/couldn't do a partial embedding for some reason. 

Can someone please confirm/correct this statement?

Thanks,
dave


This communication may contain privileged and/or confidential information. It is intended solely for the use of the addressee. If you are not the intended recipient, you are strictly prohibited from disclosing, copying, distributing or using any of this information. If you received this communication in error, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy.   This communication may contain nonpublic personal information about consumers subject to the restrictions of the Gramm-Leach-Bliley Act. You may not directly or indirectly reuse or redisclose such information for any purpose other than to provide the services for which you are receiving the information.127 Public Square, Cleveland, OH 44114If you prefer not to receive future e-mail offers for products or services from Key Click Here
 or send an e-mail to [EMAIL PROTECTED] with 'No Promotional E-mails' in the SUBJECT line.


Difference PDF and PostScript: Special characters

2004-06-22 Thread Geoffrey
Hi,

I use the same inputstream for a FOP configuration to PDF and one to
PostScript.
The inputstream contains a Euro sign (?).
In the PDF it is shown, in the PostScript it isn't printed.
Is this a known issue or did I configure something wrong?

-- 
Thanks for any and all help,
Geoffrey




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Difference PDF and PostScript: Special characters

2004-06-22 Thread J.Pietschmann
Geoffrey wrote:
Hi,
I use the same inputstream for a FOP configuration to PDF and one to
PostScript.
The inputstream contains a Euro sign (?).
In the PDF it is shown, in the PostScript it isn't printed.
Is this a known issue or did I configure something wrong?
The most likely reason is that you use a built-in font, and
the PS printer is so old (or cheap) that it lacks a glyph for
the Euro sign.
J.Pietschmann
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Error in output to PostScript

2004-06-22 Thread Jeremias Maerki

On 22.06.2004 11:18:27 Renzo Callant wrote:
 Problem solved. I removed the check from PSStream.java.
 
 I do wonder why this check was in the code.

I've explained, haven't I?

 Can this be left out in a future release ?

Yes, I've just disabled it in CVS HEAD.

Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Win-Ansi font embedding follow-up

2004-06-22 Thread Jeremias Maerki
The code has grown. At first, there was WinAnsi embedding only, after
that TrueType subset embedding was implemented. This should have fixed
the whole issue if it hadn't been for the nasty encryption bug (which is
a problem of the PDF library, fixed in CVS HEAD). So people need to
fall back to WinAnsi-style embedding where nobody cared to implement
subset embedding for, because WinAnsi embedding is extremely easy to
implement in comparison with Unicode subset embedding.

I hope this answers your question.

As I indicated in http://issues.apache.org/bugzilla/show_bug.cgi?id=21303
(thanks, Markus, for looking it up for me) there's a work-around
involving third-party PDF encryption tools.

On 22.06.2004 18:08:23 Dave_S_White wrote:
 I had asked a similar question before, but got no responses. Trying again
 asking a better way (hopefully).
 
 If I use CID encoding, the font is partially embededded, but win-ansi
 encoding results in the entire font being embedded ( and very large PDF's).
 I'm not an expert on encoding by any means, but I don't believe this is
 inherently part of being win-ansi encoding is it? My assumption is that
 whoever wrote that portion of FOP didn't/couldn't do a partial embedding
 for some reason.
 
 Can someone please confirm/correct this statement?


Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Difference PDF and PostScript: Special characters

2004-06-22 Thread Jeremias Maerki
The Euro sign is not so old. It was hacked in a few years ago. Whether
you can produce the Euro sign depends on the font having the Euro glyph
available. If you generate a PostScript file from fonts.fo in FOP
0.20.5's examples/fo/basic directory I get the Euro sign when I view it
inside a recent GhostView (no userconfig.xml used). But the same
PostScript file may not print correctly on an older PostScript printer
when using a Helvetica font, for example, and when you don't embed fonts.

On 22.06.2004 19:55:47 Geoffrey wrote:
 I use the same inputstream for a FOP configuration to PDF and one to
 PostScript.
 The inputstream contains a Euro sign (?).
 In the PDF it is shown, in the PostScript it isn't printed.
 Is this a known issue or did I configure something wrong?



Jeremias Maerki


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Win-Ansi font embedding follow-up

2004-06-22 Thread [EMAIL PROTECTED]
i have played around a bit. when converting TTF fonts with -enc ansi i 
get correct font-names in pdf-document. without that, i always to 
something like 1E344MyFontName no i get MyFontName.
When i now run (linux) fop with -nocopy -noedit -o secret the pdf-file 
can be opened but my fonts are replaced by an adobe default font. not 
the result wanted, but much better than getting ... in place of the 
characters...

i now use CryptoPDF a perl library, which encrypt the pdf document 
without any problem. it was the only tool i found, which will work as a 
command-line tool. ok, it's not opensource, but the price with 30$ is ok 
for me.

markus
Jeremias Maerki wrote:
The code has grown. At first, there was WinAnsi embedding only, after
that TrueType subset embedding was implemented. This should have fixed
the whole issue if it hadn't been for the nasty encryption bug (which is
a problem of the PDF library, fixed in CVS HEAD). So people need to
fall back to WinAnsi-style embedding where nobody cared to implement
subset embedding for, because WinAnsi embedding is extremely easy to
implement in comparison with Unicode subset embedding.
I hope this answers your question.
As I indicated in http://issues.apache.org/bugzilla/show_bug.cgi?id=21303
(thanks, Markus, for looking it up for me) there's a work-around
involving third-party PDF encryption tools.
it's me - markus
On 22.06.2004 18:08:23 Dave_S_White wrote:
I had asked a similar question before, but got no responses. Trying again
asking a better way (hopefully).
If I use CID encoding, the font is partially embededded, but win-ansi
encoding results in the entire font being embedded ( and very large PDF's).
I'm not an expert on encoding by any means, but I don't believe this is
inherently part of being win-ansi encoding is it? My assumption is that
whoever wrote that portion of FOP didn't/couldn't do a partial embedding
for some reason.
Can someone please confirm/correct this statement?

Jeremias Maerki
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


pdf document info

2004-06-22 Thread [EMAIL PROTECTED]
does anybody knows a way to add the document info to a
pdf-file created with fop?
markus
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]