基本的に、私が行っているのは、画像をバイト配列に変換して処理し、バイト配列を取得した後、画像に変換し直すことです。これがバイト配列を画像に変換する方法です。
InputStream in = new ByteArrayInputStream(result); //result is the byte array
BufferedImage bImageFromConvert;
try {
bImageFromConvert = ImageIO.read(in);
ImageIO.write(
bImageFromConvert, watermark_ext, new File(extracted_name_path));
} catch (Exception e) {
return e.getMessage();
}
これで、このコードはPNGまたはJPG画像で完全に機能しますが、BMP画像で使用すると、bImageFromConvertがnullであるという例外が返されます。誰かが私にそれがなぜそれをするのかを知るのを手伝ってもらえますか?みんな、ありがとう。