Java 를 통 해 Word 페이지 배경 색 을 설정 하 는 과정 에 대한 자세 한 설명
Word 에 서 는 서로 다른 문서 의 레이아웃 디자인 요구 에 따라 배경 설정 색상 을 설정 할 수 있 습 니 다.흔히 볼 수 있 는 단일 색상,그 라 데 이 션 색상 또는 그림 을 불 러 와 배경 으로 설정 할 수 있 습 니 다.다음은 자바 를 통 해 상기 3 가지 Word 페이지 배경 색 을 설정 합 니 다.
사용 도구:Java v 2.2.0 용 Spire.Doc
Jar 파일 가 져 오 는 방법
방법 1:홈 페이지 를 통 해 다운로드.프로그램 아래 에 directory 디 렉 터 리 를 새로 만 들 고 이름 을 짓 습 니 다.컨트롤 패키지 에 있 는 lib 폴 더 의 Spire.doc.jar(아래 그림 1 참조)를 프로그램 에 새로 만 든 디 렉 터 리 에 직접 복사 합 니 다.jar 파일 을 복사 한 후 jar 파일 을 오른쪽 클릭 하고'Add as Library'를 선택 하 십시오.가 져 오기 완료(아래 그림 2 참조).
그림 1:
그림 2:
방법 2:maven 을 통 해 가 져 옵 니 다.참고 하 다
자바 코드 예제(참고)
[예시 1]단일 색 배경 색 추가
import com.spire.doc.*;
import com.spire.doc.documents.BackgroundType;
import java.awt.*;
import java.io.IOException;
public class BackgroundColor_Doc {
public static void main (String[] args) throws IOException{
//
String input="test.docx";
String output="backgroundcolor.docx";
Document doc = new Document(input);
//
doc.getBackground().setType(BackgroundType.Color);
doc.getBackground().setColor(Color.PINK);
//
doc.saveToFile(output,FileFormat.Docx_2013);
}
}
[예시 2]그 라 데 이 션 배경 색 추가
import com.spire.doc.*;
import com.spire.doc.documents.BackgroundType;
import com.spire.doc.documents.GradientShadingStyle;
import com.spire.doc.documents.GradientShadingVariant;
import java.awt.*;
import java.io.IOException;
public class GradientBackground_Doc {
public static void main(String[] arg) throws IOException{
//
String input= "test.docx";
String output="GradientBackgound.docx";
Document doc = new Document(input);
//
doc.getBackground().setType(BackgroundType.Gradient);
doc.getBackground().getGradient().setColor1(Color.white);
doc.getBackground().getGradient().setColor2(Color.green);
doc.getBackground().getGradient().setShadingVariant(GradientShadingVariant.Shading_Middle);
doc.getBackground().getGradient().setShadingStyle(GradientShadingStyle.Horizontal);
//
doc.saveToFile(output, FileFormat.Docx_2010);
}
}
[예제 3]그림 을 배경 으로 불 러 옵 니 다.
import com.spire.doc.*;
import com.spire.doc.documents.BackgroundType;
import java.io.IOException;
public class ImgBackground_Doc {
public static void main(String[] arg) throws IOException {
//
String input= "test.docx";
String output="ImgBackgound.docx";
String img= "lye.png";
Document doc = new Document(input);
//
doc.getBackground().setType(BackgroundType.Picture);
doc.getBackground().setPicture(img);
//
doc.saveToFile(output, FileFormat.Docx);
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.