Author: tilman
Date: Fri May 16 10:13:48 2025
New Revision: 1925579

URL: http://svn.apache.org/viewvc?rev=1925579&view=rev
Log:
PDFBOX-6005: support reverse landscape orientation for printing, by Nicolas 
DUFAILLY

Modified:
    
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/Orientation.java
    
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPageable.java

Modified: 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/Orientation.java
URL: 
http://svn.apache.org/viewvc/pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/Orientation.java?rev=1925579&r1=1925578&r2=1925579&view=diff
==============================================================================
--- 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/Orientation.java
 (original)
+++ 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/Orientation.java
 Fri May 16 10:13:48 2025
@@ -1,34 +1,37 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.pdfbox.printing;
-
-/**
- * Orientation of printed pages.
- *
- * @author John Hewson
- */
-public enum Orientation
-{
-    /** Automatically select the orientation of each page based on its aspect 
ratio.  */
-    AUTO,
-
-    /** Print all pages as landscape. */
-    LANDSCAPE,
-
-    /** Print all pages as portrait. */
-    PORTRAIT
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.pdfbox.printing;
+
+/**
+ * Orientation of printed pages.
+ *
+ * @author John Hewson
+ */
+public enum Orientation
+{
+    /** Automatically select the orientation of each page based on its aspect 
ratio.  */
+    AUTO,
+
+    /** Print all pages as landscape. */
+    LANDSCAPE,
+
+    /** Print all pages as portrait. */
+    PORTRAIT,
+
+    /** Print all pages as reverse landscape (LANDSCAPE's rotated 180 
degrees). */
+    REVERSE_LANDSCAPE
+}

Modified: 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPageable.java
URL: 
http://svn.apache.org/viewvc/pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPageable.java?rev=1925579&r1=1925578&r2=1925579&view=diff
==============================================================================
--- 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPageable.java
 (original)
+++ 
pdfbox/branches/3.0/pdfbox/src/main/java/org/apache/pdfbox/printing/PDFPageable.java
 Fri May 16 10:13:48 2025
@@ -219,6 +219,9 @@ public final class PDFPageable extends B
             case LANDSCAPE:
                 format.setOrientation(PageFormat.LANDSCAPE);
                 break;
+            case REVERSE_LANDSCAPE:
+                format.setOrientation(PageFormat.REVERSE_LANDSCAPE);
+                break;
             case PORTRAIT:
                 format.setOrientation(PageFormat.PORTRAIT);
                 break;


Reply via email to