我正在使用网络摄像头lib捕获一个人的图像护照。生成的图像是png的信息。我想创建一个临时png文件,然后将该png文件转换为JPG2000格式。我怎样才能在java中实现这一点?这是我的示例代码n java
webcam.open();
BufferedImage image = webcam.getImage();
imagePath = "";
File temppngfile = new File(imagePath);
ImageIO.write(image, "png", temppngfile);