Here you can find the source of loadImageFromFile(File file)
Parameter | Description |
---|---|
file | The java.io.File to load the java.awt.image.BufferedImage from. |
public static BufferedImage loadImageFromFile(File file)
//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; } }