我到处搜索过,我很困惑。尝试以BufferedImage
的形式读取TIFF文件。我已经导入了两个:
import javax.imageio.ImageIO;
import javax.media.jai.*;
但是,当文件通过并创建它们时,我的BufferedImage
类型仍然读为null。还有什么我需要确定的吗?通过其他帖子,我发现JAI可能不会完全支持Mac?跑小牛队。这里任何方向都会很好。
我的代码的一个小示例部分:
File f = new File(*file path posted here*);
BufferedImage bi = ImageIO.read(f);
谢谢!