我使用graphics.drawImage在Java中复制图像,但结果是文件较大,原始图像为220 KB,复制图像为2 MB
如何在不降低质量的情况下缩小图像文件大小?
下面是我使用的代码
val graphics = newImage.getGraphics()
graphics.setColor(Color.white)
graphics.fillRect(0,0,newImage.getWidth,newImage.getHeight)
graphics.drawImage(originalImage,imageNewX,imageNewY,null)
graphics.dispose();