Home > Back-end >  Load images and save them in the project's folder
Load images and save them in the project's folder

Time:09-18

As IDE I use Intellij and as programming language Java. I want to load the images and save them in a project's folder same on Intellij

CodePudding user response:

You can read images using BufferedImage and ImageIO.read():

BufferedImage image = null;
try {
    image = ImageIO.read(new File("yourpath/name.png"));
} catch (IOException e) {
}

And save it with ImageIO.write():

File outputfile = new File("yourpath/name.png");
ImageIO.write(image, "png", outputfile);
  • Related