See the javadoc on IIORegistry. With ImageIO you may have to register
your handler(s). What does ImageIO.getImageReadersBySuffix() give you.
For certain jpegs we don't use ImageIO, rather the classes in
com.sun.image.codec.jpeg:
try {
FileOutputStream fos = new FileOutputStream(file);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(fos);
JPEGEncodeParam param =
encoder.getDefaultJPEGEncodeParam(image.getRaster(),
JPEGDecodeParam.COLOR_ID_CMYK);
param.setQuality(1, false);
encoder.encode(image.getRaster(), param);
fos.close();
} catch (Throwable t) {
logger.debug(t.getMessage());
}
But generally we use ImageIO
On 06/06/2011 08:29 AM, Oscar.Flores wrote:
Yeah i think i need your help again i tried tu run the .jar file in the
console it work but without images this it what appears
GRAVE: Error while processing image: I:\cfd\rfc.jpg (image/jpeg)
org.apache.xmlgraphics.image.loader.ImageException: Cannot load image (no
suitable loader/converter combination available) for I:\cfd\rfc.jpg
(image/jpeg)
i tried download the jai-imagio add to the class path but it dont work
Rob Sargent-4 wrote:
Very odd. I'm having no problems getting images into pdfs using fop-1.0.
On 06/03/2011 11:04 AM, Oscar.Flores wrote:
aaa hey thanks for the help the other day, i resolve the problem changing
the
version of FOP for the 0.95beta instead of the 1.0, it works now it
prints
the image and its good, thanks and we are in touch if anything else fails
jejeje
Rob Sargent-4 wrote:
Nothing in the log from the transformer?
On 06/03/2011 09:47 AM, Oscar.Flores wrote:
hi there i have another problem i hope you can help me the pdf that i
create
with foe has no image, it dont show any of them, the xsl seems to be
rigth i
tested with EditX and the pdf show me the image, what can it be, i have
xmlgraphics-commons-1.5svn, fop 1.0, fop-pdf-images 2.0.1 Snapshot for
the
render of the image but it don work please help!!! :,(
---------------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]