Make ./gradlew executable; accept .java files improvements after running ./gradlew build

This commit is contained in:
Andrey Voronkov
2024-01-03 03:21:11 +03:00
parent de9e9a0f84
commit 8a57165547
29 changed files with 3006 additions and 3007 deletions

View File

@@ -119,11 +119,10 @@ public class SplitPdfBySectionsController {
// Set clipping area and position
float translateX = -subPageWidth * i;
float translateY = height - subPageHeight * (verticalDivisions - j);
//Code for google Docs pdfs..
//float translateY = -subPageHeight * (verticalDivisions - 1 - j);
// Code for google Docs pdfs..
// float translateY = -subPageHeight * (verticalDivisions - 1 - j);
contentStream.saveGraphicsState();
contentStream.addRect(0, 0, subPageWidth, subPageHeight);
contentStream.clip();