Java를 사용하여 PDF 페이지 회전
jar 종속성 가져오기(2가지 방법)
● Free Spire.PDF for Java을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Pdf.jar 파일을 종속성으로 프로젝트에 추가합니다.
● pom.xml에 다음 구성을 추가하여 maven 프로젝트에 jar 종속성을 추가할 수도 있습니다.
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.pdf.free</artifactId>
<version>3.9.0</version>
</dependency>
</dependencies>
아래는 input.pdf 파일의 스크린샷입니다.
자바 코드
import com.spire.pdf.PdfDocument;
import com.spire.pdf.PdfPageBase;
import com.spire.pdf.PdfPageRotateAngle;
import java.io.IOException;
public class RotatePDFPage {
public static void main(String[] args) throws IOException {
//Load the PDF document
PdfDocument pdf = new PdfDocument();
pdf.loadFromFile("input.pdf");
//Get the first page
PdfPageBase page = pdf.getPages().get(0);
//Get the original rotation angle of the page
int rotateAngle = page.getRotation().getValue();
//Rotate the PDF page 90 degrees clockwise based on the original rotation angle
rotateAngle += PdfPageRotateAngle.Rotate_Angle_90.getValue();
page.setRotation((PdfPageRotateAngle.fromValue(rotateAngle)));
//Save the PDF document
pdf.saveToFile("Rotated.pdf");
}
}
생성된 PDF 파일의 스크린샷:
Reference
이 문제에 관하여(Java를 사용하여 PDF 페이지 회전), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codesharing/rotate-a-pdf-page-using-java-37he텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)