Is there a way to check to see if a renderedOp is corrupt without rendering it?
I have a site where users upload an image, and I need to verify that it isn't a corrupt image. Currently I can do that by doing the following:
try{
RenderedOp imageOp = JAI.create("stream", inputStream);
imageOp.getRendering();
} catch (Exception e) {
//Image is corrupt/can't be rendered
}
Is there a different way? Rendering takes longer than I want it to, which is why I'm asking.