As I noted in my original post, I'd follow-up with any findings. In my research (I walked through TIFFRendererConfigurator) I discovered the reason the following suggested in-line code was not working
FOUserAgent ua = fopFactory.newFOUserAgent(); TIFFRenderer renderer = new TIFFRenderer(); renderer.setUserAgent(ua); renderer.getWriterParams().setCompressionMethod(TIFFConstants.COMPRESSIO N_CCITT_T6); ua.setRendererOverride(renderer); It is missing the following line after setUserAgent() renderer.setBufferedImageType(BufferedImage.TYPE_BYTE_BINARY); SIDE-EFFECT NOTE: If you call on a Renderer which extends Java2DRenderer you don't need to call ua.setRenfererOverride(renderer) as this is side-effect called in renderer.setUserAgent(ua) Hope this helps anyone who reads this going forward. -Josh ----------------------------------------- The information in this message may be proprietary and/or confidential, and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify First Data immediately by replying to this message and deleting it from your computer. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
