次のコードでは、ソース画像のdpiは600ですが、結果の画像のdpiは96になります。なぜですか?
RenderedOp source = JAI.create("fileload", "img/1.jpg");
FileOutputStream outputStream = new FileOutputStream("img/new1.jpg");
JAI.create("encode", source, outputStream, "JPEG", null);
JAI.create("filestore", source, "img/new1.jpg", "JPEG", null);