1
如何在Java中將bmp轉換爲jpg?我知道如何使用ImageIO
的方式,但有沒有更快或更好的方法呢?在java中將bmp轉換爲jpg
這是我在網上找到的ImageIO方式。
`//Create file for the source
File input = new File("c:/temp/image.bmp");
//Read the file to a BufferedImage
BufferedImage image = ImageIO.read(input);`
//Create a file for the output
File output = new File("c:/temp/image.jpg");
//Write the image to the destination as a JPG
ImageIO.write(image, "jpg", output);
如果我用這種方式會失去質量嗎?
謝謝
我會推薦在JPG上使用PNG。您仍然可以獲得比BMP更小的圖像,但不會損失圖像質量。 –