Re: Why FOP needs JIMI or JAI por PNG support?
Eduardo Muñoz wrote: Does anybody know why FOP needs JIMI or JAI for PNG support? Something needs to read/parse the image data, extract the image content and convert it into data which can be embedded into the PDF. J.Pietschmann - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Why FOP needs JIMI or JAI por PNG support?
Does anybody know why FOP needs JIMI or JAI for PNG support? Ed = _ Do You Yahoo!? Información de Estados Unidos y América Latina, en Yahoo! Noticias. Visítanos en http://noticias.espanol.yahoo.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: can't find default configuration file
Josef, On May 21, 2004, at 8:23 AM, Chris Bowditch wrote: [EMAIL PROTECTED] wrote: Hi, i tried to run fop-0.20.5 at windows XP with command fop -d -x -fo input.fo -pdf t.pdf [ERROR] can't find default configuration file You have asked FOP to dump the config settings (-x switch), but you have not specified the file. A default file is shipped with FOP as conf\userconfig.xml under the FOP install directory. To avoid the error, either: 1) specify the config file using the -c switch at the command line. 2) dont specify option -x at command line. Chris In addition to Chris's remarks, I would add that you'll need to add the path to the config file, as in: '-c conf/userconfig.xml' So here's a complete line for you: fop -d -c conf/userconfig.xml -fo input.fo -pdf t.pdf (of course '-d' is not necessary as it enables 'debug' mode). Hope this helps! Web Maestro Clay - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: setting border for a page for pdf output
Roche, Conrad (Cognizant) wrote: Hi, I need to provide a border to the pages in the pdf file. I tried specifing it thus - But the output didn't contain any borders! The spec says borders are not valid on regions. See this thread from the archives: http://marc.theaimsgroup.com/?l=fop-user&m=106392161016806&w=2 Trying the same on a block worked though. the border style "ridge" is not implemented in FOP. It probably fell back to "solid" Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: can't find default configuration file
[EMAIL PROTECTED] wrote: Hi, i tried to run fop-0.20.5 at windows XP with command fop -d -x -fo input.fo -pdf t.pdf [ERROR] can't find default configuration file You have asked FOP to dump the config settings (-x switch), but you have not specified the file. A default file is shipped with FOP as conf\userconfig.xml under the FOP install directory. To avoid the error, either: 1) specify the config file using the -c switch at the command line. 2) dont specify option -x at command line. Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
setting border for a page for pdf output
Title: setting border for a page for pdf output Hi, I need to provide a border to the pages in the pdf file. I tried specifing it thus - padding="6pt"/> But the output didn't contain any borders! Trying the same on a block worked though. Isn't page border supported? If it is, how do I specify a page border? thanks Conrad This e-mail and any files transmitted with it are for the sole use of the intended recipient(sand may contain confidential and privileged information.If you are not the intended recipient,please contact the sender by reply e-mail and destroy all copies of the original message.Any unauthorised review, use, disclosure, dissemination, forwarding, printing or copyingof this email or any action taken in reliance on this e-mail is strictly prohibited and may beunlawful. Visit us at http://www.cognizant.com
can't find default configuration file
Hi, i tried to run fop-0.20.5 at windows XP with command fop -d -x -fo input.fo -pdf t.pdf and i got following output [DEBUG] Input mode: [DEBUG] FO [DEBUG] fo input file: input.fo [DEBUG] Output mode: [DEBUG] pdf [DEBUG] output file: t.pdf [DEBUG] OPTIONS [DEBUG] no user configuration file is used [default] [DEBUG] debug mode on [DEBUG] dump configuration [DEBUG] quiet mode on [ERROR] can't find default configuration file org.apache.fop.apps.FOPException: can't find default configuration file at org.apache.fop.apps.Options.loadStandardConfiguration(Options.java:18 4) at org.apache.fop.apps.Options.(Options.java:73) at org.apache.fop.apps.Starter.(Starter.java:68) at org.apache.fop.apps.CommandLineStarter.(CommandLineStarter.java :72) at org.apache.fop.apps.CommandLineOptions.getStarter(CommandLineOptions. java:522) at org.apache.fop.apps.Fop.main(Fop.java:61) Could someone help me with this problem? - Mgr. Josef Vesely ACE Design s.r.o. Brno, Czech Republic - - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
File Embedding into PDF
I programmed a FOP modification to embed files into PDF documents: Acrobat 5.x, Acrobat Reader 6.x allow to open embedded files by the associated application programs. External XSL Specification: sample.svg External files with types '.svg', '.doc', '.xls.', '.pdf' are embedded. More types may be added easily. Prerequisites: FOP 0.20.5, Java 1.4 (NIO), Acrobat Reader 6.x Download from: http://mypage.bluewin.ch/huanderegg/FOPmods/FOPmods.html Hansuli Anderegg - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: FOP 0.20.5 PDF Renderer yields [INFO] 1 [ERROR] null - no FAQ or Web information available
Thank you for your help, Chris. I must have missed that item when I was going through the compliance page! Kyle Chris Bowditch wrote: block-containers are not fully implemented in FOP, and have some restrictions. These are listed on the compliance page: http://xml.apache.org/fop/compliance.html#fo-object-block-container Basically the error you see above is caused when the block-container is not a direct child of fo:flow. Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: FOP 0.20.5 PDF Renderer yields [INFO] 1 [ERROR] null - no FAQ or Web information available
Kyle Partridge wrote: And, here is a short example of the error message I get, running FOP with both the -d and the -c conf/userconfig.xml options. [ERROR] null org.apache.fop.apps.FOPException at org.apache.fop.apps.CommandLineStarter.run(CommandLineStarter.java:111) at org.apache.fop.apps.Fop.main(Fop.java:62) java.lang.ClassCastException at org.apache.fop.fo.flow.BlockContainer.layout(BlockContainer.java:157) at org.apache.fop.fo.flow.BasicLink.layout(BasicLink.java:178) at org.apache.fop.fo.flow.Block.layout(Block.java:257) at org.apache.fop.fo.flow.AbstractFlow.layout(AbstractFlow.java:154) at org.apache.fop.fo.flow.AbstractFlow.layout(AbstractFlow.java:110)etc. block-containers are not fully implemented in FOP, and have some restrictions. These are listed on the compliance page: http://xml.apache.org/fop/compliance.html#fo-object-block-container Basically the error you see above is caused when the block-container is not a direct child of fo:flow. Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]