文檔首頁(yè)>>Spire.Doc系列教程>>Spire.Doc系列教程(16):給Word文檔設(shè)置背景顏色和背景圖片
Spire.Doc系列教程(16):給Word文檔設(shè)置背景顏色和背景圖片
使用Spire.Doc,開(kāi)發(fā)人員可以非常方便地給Word文檔設(shè)置背景顏色和添加背景圖片。以下示例將詳細(xì)講述如何使用Spire.Doc給一個(gè)現(xiàn)有Word文檔設(shè)置純色背景顏色,漸變背景顏色以及添加背景圖片。
設(shè)置背景顏色
設(shè)置純色背景顏色
//創(chuàng)建Document實(shí)例 Document document = new Document(); //載入Word文檔 document.LoadFromFile("Input.docx"); //設(shè)置文檔的背景填充模式為顏色填充 document.Background.Type = BackgroundType.Color; //設(shè)置背景顏色 document.Background.Color = Color.Beige; //保存文檔 document.SaveToFile("PureColor.docx", FileFormat.Docx2013);
設(shè)置漸變背景顏色
//創(chuàng)建Document實(shí)例 Document document = new Document(); //載入Word文檔 document.LoadFromFile("Input.docx"); //設(shè)置文檔的背景填充模式為漸變填充 document.Background.Type = BackgroundType.Gradient; //設(shè)置漸變顏色 BackgroundGradient gradient = document.Background.Gradient; gradient.Color1 = Color.White; gradient.Color2 = Color.MediumSeaGreen; //設(shè)置漸變模式 gradient.ShadingVariant = GradientShadingVariant.ShadingMiddle; gradient.ShadingStyle = GradientShadingStyle.Horizontal; //保存文檔 document.SaveToFile("GradientColor.docx", FileFormat.Docx2013);
設(shè)置背景圖片
//創(chuàng)建Document實(shí)例 Document document = new Document(); //載入Word文檔 document.LoadFromFile("Input.docx"); //設(shè)置文檔的背景填充模式為圖片填充 document.Background.Type = BackgroundType.Picture; //設(shè)置背景圖片 document.Background.Picture = Image.FromFile("background.jpg"); //保存文檔 document.SaveToFile("Image.docx", FileFormat.Docx2013);