1
私はプレーフレームワーク1.2.4を使用しています。 Image.resize()メソッドに問題があり、PNGイメージの透明度が取り除かれていますか?私のコードは次のようになりプレーフレームワークImage.resize on pngの透明度を失う
:
public static void uploadPhoto(int user_id, File picture) throws IOException{
Images.resize(picture, picture, 200, 200, true);
FileInputStream f = new FileInputStream(picture);
user.getPerson().setPicture(IOUtils.toByteArray(f));
user.getPerson().save();
...
}
私は、PNGの透明性を損なうことなく、サイズを変更しますする方法を知りたいですか?
ありがとうございました。