0

Word文書のヘッダーに画像を挿入する方法。エンティティにドキュメントを添付するときに名前を変更するためのプラグインを作成しました。ファイルを保存する前にWord文書のヘッダーにロゴを挿入する方法。c#のコードも役に立ちます。

4

2 に答える 2

3

このコードを使用して、Word文書のヘッダーに画像を挿入できます。

 foreach (wd.Section section in CurrentDocument.Sections)
 {
  word.HeaderFooter header= section.Headers[wd.WdHeaderFooterIndex.wdHeaderFooterPrimary];
  wd.Shape oshape = header.Shapes.AddPicture(@"C:\Users\mahammadi\Desktop\icon\plus2.png",  left, top, width, height);
 }
于 2012-09-01T08:23:59.260 に答える
0
  Document doc = new Document();
  doc.LoadFromFile(@"E:\JaneEyre.docx", FileFormat.Docx);
 HeaderFooter header = doc.Sections[0].HeadersFooters.Header;
  header.Paragraphs[0].Text = "Preview";
  Image logo = Image.FromFile(@"D:\E-ICEBLUE.png");
  header.Paragraphs[0].AppendPicture(logo).TextWrappingStyle = TextWrappingStyle.Tight;
  HeaderFooter footer = doc.Sections[0].HeadersFooters.Footer;
  doc.SaveToFile("Sample.docx", FileFormat.Docx);
  System.Diagnostics.Process.Start("Sample.docx");footer.Paragraphs[0].Text = "Author: Charlotte Brontë";
于 2012-08-31T05:40:48.107 に答える