[Java] Word 문서에 WordArt 추가

5539 단어
일반 텍스트와 비교할 때 WordArt는 더 창의적이고 장식적이며 아름답게 디자인된 잡지나 포스터에 자주 사용됩니다. 이 기사에서는 Free Spire.Doc for 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);
    }
}


좋은 웹페이지 즐겨찾기