我发现公共成像库最符合我的需求,但缺少此库使用的样本。 有没有人有一个例子如何旋转jpeg图像无损(即只通过更改文件元数据)? 谢谢!
答案 0 :(得分:0)
有一个类RotatedIcon(参见链接)可以像这样使用
if (imageOrientation.equals("3")) {
rotatedIcon = new RotatedIcon(imageIcon, RotatedIcon.Rotate.UPSIDE_DOWN);
} else if (imageOrientation.equals("6")) {
rotatedIcon = new RotatedIcon(imageIcon, RotatedIcon.Rotate.DOWN);
} else if (imageOrientation.equals("8")) {
rotatedIcon = new RotatedIcon(imageIcon, RotatedIcon.Rotate.UP);
}
imageOrientation是图像元数据(例如EXIF)的属性