자바 로 PDF 페이지 에 대한 상세 설정 구현
아래 의 예 는 자바 프로 그래 밍 을 통 해 PDF 페이지 를 맞 춤 형 으로 설정 하 는 방법 을 소개 할 것 이다.이 는 페이지 크기,페이지 여백,종이 방향,페이지 회전 등 을 포함한다.선택 할 수 있 는 페이지 크기 는 다음 과 같 습 니 다.
또한 문서 내용 회전 을 설정 할 때 다음 각 도 를 지원 하여 내용 회전 을 할 수 있 습 니 다.
사용 도구
Java 2.2.2(무료 버 전)의 Spire.PDF
방법 1:
홈 페이지 를 통 해 jar 를 다운로드 하고 참조 합 니 다.다음 단계:
단계 1:자바 프로그램 에 Lib 라 는 폴 더 를 새로 만 듭 니 다.제품 가방 에 있 는 jar 파일(아래 그림)을 새 폴 더 로 복사 합 니 다.
STEP 2:파일 복사 후 인용 라 이브 러 리 에 추가:이 jar 파일 을 선택 하고 마우스 오른쪽 단 추 를 누 르 고"Build Path"C"Add to Build Path"를 선택 하 십시오.인용 완료.
방법 2:
통과
자바 예제(참고)
import com.spire.pdf.*;
import com.spire.pdf.graphics.PdfMargins;
import java.awt.*;
import java.awt.geom.Dimension2D;
import java.awt.geom.Point2D;
public class PageSettings_PDF {
public static void main(String[] args){
// PdfDocument
PdfDocument originalDoc = new PdfDocument();
// PDF
originalDoc.loadFromFile("input.pdf");
// PdfDocument
PdfDocument newDoc = new PdfDocument();
// PDF
Dimension2D dimension2D = new Dimension();
for (int i = 0; i < originalDoc.getPages().getCount(); i++) {
PdfPageBase page = originalDoc.getPages().get(i);
if (i == 0) {
// 、 1.2
float scale = 1.2f;
float width = (float) page.getSize().getWidth() * scale;
float height = (float) page.getSize().getHeight() * scale;
dimension2D.setSize(width, height);
// 50, 100
PdfMargins margins = new PdfMargins(50, 100);
PdfPageBase newPage = newDoc.getPages().add(dimension2D, margins);
//
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
if (i == 1) {
// 100、 100
PdfMargins margins = new PdfMargins(100,100);
// A3
PdfPageBase newPage = newDoc.getPages().add(PdfPageSize.A3, margins);
// ,
double wScale = (PdfPageSize.A3.getWidth() - 10) / PdfPageSize.A3.getWidth();
double hScale = (PdfPageSize.A3.getHeight() - 10) / PdfPageSize.A3.getHeight();
newPage.getCanvas().translateTransform(wScale, hScale);
//
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
if (i == 2) {
// 200, 50
PdfMargins margins = new PdfMargins(240, 50);
// A3, 0,
PdfPageBase newPage = newDoc.getPages().add(PdfPageSize.A3, margins, PdfPageRotateAngle.Rotate_Angle_0, PdfPageOrientation.Landscape);
// ,
double wScale = PdfPageSize.A4.getHeight() / page.getSize().getWidth();
double hScale = PdfPageSize.A4.getWidth() / page.getSize().getHeight();
newPage.getCanvas().translateTransform(wScale, hScale);
//
newPage.getCanvas().drawTemplate(page.createTemplate(), new Point2D.Float());
}
// PDF
newDoc.saveToFile("pdfPageSetting.pdf");
}
}
}
코드 를 완성 한 후 프로그램 을 실행 하여 문 서 를 생 성 합 니 다.페이지 설정 을 통 해 효 과 는 다음 그림 과 같 습 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.