我收到 java.lang.UnsupportedOperationException: RectangleReadOnly: this Rectangle is read only。当我尝试创建一个 Rectangle 对象然后旋转它时出现异常。使用的jar文件是-com.lowagie.text-2.1.7.jar
Rectangle pg = PageSize.getRectangle("LETTER");
if (isLandscape) pg = pg.rotate(); (exception coming on this line)
if (!TextOp.isEmpty(pageBGColor)) {
pg.setBackgroundColor(PDFUtil.getColor(pageBGColor));
}
document_ = new Document(pg);