454647484950515253
ByteArrayOutputStream baos = new ByteArrayOutputStream(); BufferedOutputStream bos = new BufferedOutputStream( baos ); try { image.encodeJPEG( bos, 0.75f ); } catch (IOException e) { throw new RenderingException(e); } return baos.toByteArray(); }