Download dan Belajar Software, Download, Script all Programming Dunia IT.
Saturday, May 31, 2025
[JAVA] IMAGE INFO RESOLUTION
import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; public class ImageLoader { public static void main(String[] args) { try { File imageFile = new File("path/to/your/image.jpg"); BufferedImage image = ImageIO.read(imageFile); if (image != null) { int width = image.getWidth(); int height = image.getHeight(); System.out.println("Image dimensions: " + width + "x" + height); } else { System.out.println("Failed to load the image."); } } catch (IOException e) { e.printStackTrace(); } } }
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment