C# Word 문서의 배경색과 배경 이미지 설정
1. 단색 배경색 설정
【C#】
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Spire.Doc;
using Spire.Doc.Documents;
using System.Drawing;
namespace PureColor_Background_Word
{
class Program
{
static void Main(string[] args)
{
//ドキュメントインスタンスを作成する
Document document = new Document();
//Word文書をロードする
document.LoadFromFile("テスト.docx");
//ドキュメントの背景塗りつぶしモードをカラー塗りつぶしに設定する
document.Background.Type = BackgroundType.Color;
//背景色を設定する
document.Background.Color = Color.Beige;
//ドキュメントを保存
document.SaveToFile("単色の背景色.docx", FileFormat.Docx2013);
}
}
}
[C#]
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Spire.Doc;
using Spire.Doc.Documents;
using System.Drawing;
namespace GradientColor_Background_Word
{
class Program
{
static void Main(string[] args)
{
//ドキュメントインスタンスを作成する
Document document = new Document();
//Word文書をロードする
document.LoadFromFile("テスト.docx");
//ドキュメントの背景塗りつぶしモードをグラデーション塗りつぶしに設定する
document.Background.Type = BackgroundType.Gradient;
//グラデーションの色を設定する
BackgroundGradient gradient = document.Background.Gradient;
gradient.Color1 = Color.White;
gradient.Color2 = Color.MediumSeaGreen;
//グラデーションモードを設定する
gradient.ShadingVariant = GradientShadingVariant.ShadingMiddle;
gradient.ShadingStyle = GradientShadingStyle.Horizontal;
//保存文档
document.SaveToFile("グラデーションの背景色.docx", FileFormat.Docx2013);
}
}
}
효과 차트는 다음과 같습니다.
3. 배경 이미지 설정
【C#】
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Spire.Doc;
using Spire.Doc.Documents;
using System.Drawing;
namespace Image_Background
{
class Program
{
static void Main(string[] args)
{
//ドキュメントインスタンスを作成する
Document document = new Document();
//Word文書をロードする
document.LoadFromFile("テスト.docx");
//ドキュメントの背景塗りつぶしモードを設定して画像を塗りつぶす
document.Background.Type = BackgroundType.Picture;
//背景画像を設定する
document.Background.Picture = Image.FromFile("背景.jpg");
//ドキュメントを保存
document.SaveToFile("画像の背景.docx", FileFormat.Docx2013);
}
}
}
효과 차트는 다음과 같습니다.
Reference
이 문제에 관하여(C# Word 문서의 배경색과 배경 이미지 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iceblue/items/da2857f1c3a9cfc75053텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)