我正在使用播放框架 1.2.4。我在删除 png 图像中的透明度的 Image.resize() 方法时遇到问题?
我的代码如下所示:
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 透明度的情况下调整大小?
谢谢。