Java reads picture pixels and size

Source: Internet
Author: User

Package com.aa.promotion.dao.generalize;


Import Java.awt.image.BufferedImage;
Import Java.io.File;
Import Java.io.FileInputStream;
Import java.io.FileNotFoundException;
Import java.io.IOException;
Import Java.nio.channels.FileChannel;


Import Javax.imageio.ImageIO;


public class Umpgeneralizedao {


public static void Main (string[] args) {
File File = new file ("E:\\test.jpg");
FileChannel FC = null;
if (file.exists () && file.isfile ()) {
try {
FileInputStream fs = new FileInputStream (file);
FC = Fs.getchannel ();
System.out.println (fc.size () + "-----fc.size ()");
} catch (FileNotFoundException e) {
E.printstacktrace ();
} catch (IOException e) {
E.printstacktrace ();
}
}
System.out.println (File.length () + "-----file.length B");
System.out.println (File.length () * 1024x768 + "-----file.length kb");
BufferedImage bi = null;
try {
Bi = imageio.read (file);
} catch (IOException e) {
E.printstacktrace ();
}

int width = bi.getwidth ();
int height = bi.getheight ();

System.out.println ("Width: Pixel-----" + width + "Height: pixels" + height);


}
}


Gets the picture size by default to B

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Java reads picture pixels and size

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.