> >Strange, I've never had any problems yet. Some random thoughts: > What exactly have you worked with/printed with? > My target machine is a big Xerox monster that uses a RIP engine to process > the PDFs and send PS to the printer.
I've used Acrobat Reader 4.05 on Linux to convert the PDF to PostScript Level 2. The generated PS file printed well on out Xerox DC 12. Actually, I've never checked with our Xerox DocuPrint 4635. What monster do you have? I'm still waiting for a PDF RIP for our 4635. > Gives following err message: > > RIP: PostScript Error: syntaxerror; OffendingCommand: bin obj seq, > type = > 128, elements = 1, size = 15365, unused field not zero > RIP: Flushing: rest of job (to end-of-file) will be ignored > > >- Did you try GhostScript/GhostView? > > What can I conclude by using this? That your EPS file works at all. > My PDF files open and displays the images. > If I print via PDFWriter to file the result PDF looks accurate. > > >- Are your EPS files PostScript Level 1? CorelDraw, for example, tells > > me some strange stuff when I choose anything else that Level 1 when > > exporting EPS. > > Afraid I dont have Corel. I saved my EPS files with Illustrator. ( Level 1, > Illustrator format 8) Should work, but I'd try "Illustrator 88", too. > Using thoose files generates following error message: > > [INFO]: building formatting object tree > [INFO]: [1] > [ERROR]: Error while creating area : Error while recovering Image > Informations (file:/D:/CVS/BC/webApplication/images/gn_testlogo.eps) : > [INFO]: Parsing of document complete, stopping renderer That sounds like something's really wrong. Does this logo really show when opened in GhostView? The above error happens in this code (from org.apache.fop.images.FopImageFactory.java): ImageReader imgReader = null; try { if (imgIS == null) { imgIS = absoluteURL.openStream(); } imgReader = ImageReaderFactory.Make(absoluteURL.toExternalForm(), imgIS); } catch (Exception e) { throw new FopImageException("Error while recovering Image Informations (" + absoluteURL.toString() + ") : " + e.getMessage()); } Edit this file and add "e.printStackTrace();" before "throw new Fop....", so we can see what the original error is. Unfortunately, the code here hides the original exception. e.getMessage() is obviously null, so it could be a NPE or something. > Feel lost... I'm here :-) Two ideas: 1. If you've got a relatively new Illustrator you can save your logos as SVG. 2. If you have Unix (Solaris, Linux) available, you could convert the PDF to PS using Acrobat Reader on the command line using -toPostScript. I hope this helps. Cheers, Jeremias Märki mailto:[EMAIL PROTECTED] OUTLINE AG Postfach 3954 - Rhynauerstr. 15 - CH-6002 Luzern Tel. +41 41 317 2020 - Fax +41 41 317 2029 Internet http://www.outline.ch --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]