Reading a progressively encoded 9000x9000 JPEG in Java takes 1 minute
问题 When using javax.imageio.ImageIO to load a large-resolution (9000x9000) JPEG from disk, it takes more than 1 minute in my scala application. I tried creating a Java-only project, but it still takes too long - around 30 seconds. This is how I load the image: File file = new File("/Users/the21st/slow2.jpg"); BufferedImage image = ImageIO.read(file); Is there any way to improve performance on reading progressively encoded large-res JPEGs in Java? The image in question is this one (moderators,