0
嗨我想檢查PDFBOx中的以下情形: 「圖像旋轉的角度不是90度的倍數」。 任何人都可以請幫忙在這個話題。 樣品PDF的位置: https://drive.google.com/file/d/0BzaBYVk1XnP_UkJjMDRBc2owd0E/edit?usp=sharing如何確定圖像使用PDFBOX旋轉小於90度
嗨我想檢查PDFBOx中的以下情形: 「圖像旋轉的角度不是90度的倍數」。 任何人都可以請幫忙在這個話題。 樣品PDF的位置: https://drive.google.com/file/d/0BzaBYVk1XnP_UkJjMDRBc2owd0E/edit?usp=sharing如何確定圖像使用PDFBOX旋轉小於90度
一樣狡猾說,我已冗長
//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
}
這是你如何處理這種情況
你如何確定PDXObjectImage的角度? – Edi
布爾mutipleof90 =(角%90 == 0); – slipperyseal
檢查頁面內容流。你會發現'q 325.79257 -42.55899 30.90112 236.55064 164.64209 365.19037 cm/X1做Q'。將該轉換矩陣分解爲其平移,縮放,旋轉和傾斜部分。看看旋轉矩陣。 – mkl
嗨,你能告訴如何爲PDXObjectImage對象導出旋轉角度嗎? –