Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java で tiff 画像の int[2048][2048] 生データ配列を持っています。その配列を BufferedImage に変換したいと思います。どのように進めればよいですか?
これと同じくらい簡単です:
BufferedImage image = ImageIO.read(new ByteArrayInputStream(array));