Java BufferedImage Load loadImageFromFile(File file)

Here you can find the source of loadImageFromFile(File file)

Description

Loads a java.awt.image.BufferedImage from a java.io.File .

License

Open Source License

Parameter

Parameter Description
file The java.io.File to load the java.awt.image.BufferedImage from.

Return

Returns the located in the .

Declaration

public static BufferedImage loadImageFromFile(File file) 

Method Source Code

//package com.java2s;
/**//from  w  ww .ja va 2  s.  c  om
 *  Wrath Engine
 *  Copyright (C) 2015 Trent Spears
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

import javax.imageio.ImageIO;

public class Main {
    /**
     * Loads a {@link java.awt.image.BufferedImage} from a {@link java.io.File}.
     * @param file The {@link java.io.File} to load the {@link java.awt.image.BufferedImage} from.
     * @return Returns the {@link java.awt.image.BufferedImage} located in the {@link java.io.File}.
     */
    public static BufferedImage loadImageFromFile(File file) {
        if (file == null)
            return null;

        BufferedImage ret = null;

        try {
            ret = ImageIO.read(file);
        } catch (IOException e) {
            System.err.println("Could not load image from file! I/O Error!");
        }

        return ret;
    }
}

Related

  1. loadImage(URL url)
  2. loadImageData(BufferedImage image)
  3. loadImageData(String name)
  4. loadImageFromBytes(byte[] bytes)
  5. loadImageFromFile(File f)
  6. loadImageFromFile(String filename)
  7. loadImageFromFile(String fileName)
  8. loadImageFromFile(String filepath)
  9. loadImageFromFile_ORIG(String imgName)