I am developing a java swing based application which show thumbnail of any format(jpg,png) images. For that, at first I read the image file by ImageIO.read(file name)
and then create thumbnail of it. But it shows null pointer exception when read PSD format file.
I use ideli library for read PSD type file but it requires subcription/paid. So there have any free library to read PSD type file in Java?
image = ImageIO.read(new File(i));
thumb = Thumbnails.of(image).size(140,100).outputFormat("png").asBufferedImage();
ImageIO.write(thumb, "png", new File("thumb.png"));
By above code, I can read (without PSD) image file and create thumbnail of image.