[Java] Word 문서에 WordArt 추가
설치
방법 1: Free Spire.Doc for Java을 다운로드하고 압축을 풉니다. 그런 다음 Spire.Doc.jar 파일을 Java 애플리케이션에 종속성으로 추가합니다.
방법 2: 다음 구성을 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.doc.free</artifactId>
<version>2.7.3</version>
</dependency>
</dependencies>
워드 아트 추가
import com.spire.doc.*;
import com.spire.doc.documents.*;
import com.spire.doc.fields.ShapeObject;
import java.awt.*;
public class WordArt{
public static void main(String[] args) throws Exception {
//Create a Word document.
Document doc = new Document();
//Add a section
Section section = doc.addSection();
//Add a paragraph.
Paragraph paragraph = section.addParagraph();
//Add a shape
ShapeObject shape = paragraph.appendShape(250, 70, ShapeType.Text_Wave_4);
//Set the position of the shape
shape.setVerticalPosition(80);
shape.setHorizontalPosition(100);
//Set the text of WordArt
shape.getWordArt().setText("Thanks for reading");
//Set the fill color
shape.setFillColor(Color.CYAN);
//Set the border color of the text
shape.setStrokeColor(Color.BLACK);
//Save the document
doc.saveToFile("WordArt.docx", FileFormat.Docx_2013);
}
}
Reference
이 문제에 관하여([Java] Word 문서에 WordArt 추가), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codesharing/java-add-wordart-to-word-document-4o11텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)