一.ImageJ简介 ImageJ是一款由NIH(National Institutes of Health,美国国家卫生研究院)发起,可用于Windows,Mac,OSX和Linux等操作系统的图像处理开元软件,ImageJ小巧,只有5MB左右,界面简洁&…
重点内容 (一) How to read an image from file or URL?
从本地文本读取图片
File sourceimage new File("c:\\mypic.jpg");
Image image ImageIO.read(sourceimage);
从网络上获取图片
URL url new URL("http://www.mkyong.com/image/mypic…