Image transcoding (JPEG to PNG) with Java

前端 未结 4 1127
谎友^
谎友^ 2020-12-08 16:44

In my Java application I would like to download a JPEG, transfer it to a PNG and do something with the resulting bytes.

I am almost certain I remember a library to d

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-08 17:11

    javax.imageio should be enough. Put your JPEG to BufferedImage, then save it with:

    File file = new File("newimage.png");
    ImageIO.write(myJpegImage, "png", file);
    

提交回复
热议问题