Hintergrundfarbe der Java-Einstellungswortseite In Word können Sie Hintergrundeinstellungen für verschiedene Anforderungen an das Dokumentlayout festlegen. Im Allgemeinen können Sie eine einzelne Farbe, einen Farbverlauf oder ein bestimmtes Bild importieren und als Hintergrund festlegen. Legen Sie die Hintergrundfarbe der unteren drei Word-Seiten in Java fest.
Fügen Sie eine einzelne Hintergrundfarbe hinzu </ b>
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{
//Testdokument laden
String input="test.docx";
String output="backgroundcolor.docx";
Document doc = new Document(input);
//Stellen Sie einen monochromen Hintergrund ein
doc.getBackground().setType(BackgroundType.Color);
doc.getBackground().setColor(Color.PINK);
//Dokument speichern
doc.saveToFile(output,FileFormat.Docx_2013);
}
}
Hintergrundfarbe für Farbverläufe hinzufügen </ b>
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{
//Testdokument laden
String input= "test.docx";
String output="GradientBackgound.docx";
Document doc = new Document(input);
//Verlaufseinstellungen
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);
//Dokument speichern
doc.saveToFile(output, FileFormat.Docx_2010);
}
}
Bild in Hintergrund laden </ b>
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 {
//Testdokument laden
String input= "test.docx";
String output="ImgBackgound.docx";
String img= "lye.png ";
Document doc = new Document(input);
//Stellen Sie den Bildhintergrund ein
doc.getBackground().setType(BackgroundType.Picture);
doc.getBackground().setPicture(img);
//Dokument speichern
doc.saveToFile(output, FileFormat.Docx);
}
}
Recommended Posts