如何使用PDFBOX确定图像旋转小于90度

时间:2014-01-17 05:04:36

标签: java validation pdf pdfbox

您好我想在PDFBOx中查看以下场景: “图像旋转的角度不是90度的倍数”。 任何人都可以帮助这个主题。 示例PDF位置: https://drive.google.com/file/d/0BzaBYVk1XnP_UkJjMDRBc2owd0E/edit?usp=sharing

1 个答案:

答案 0 :(得分:0)

正如Slippery所说,我已经做了很长的时间

//set the angle of the image
double angle;
if(angle % 90 == 0){
//Perform operation when the angle is multiple of 90
}else{
//Perform operation when the angle is NOT multiple of 90
}

这是你可以处理这种情况的方法