使用C#Winforms将图像导出到MS Word

时间:2014-11-15 18:54:48

标签: c# winforms ms-word export

我正在尝试将图像导出到Windows窗体应用程序中的MS-Word文档。

以下是Word文档中要导出的数据列表

TestCaseName TestStatus Screenshot ScreenshotPath 
TC001         Pass          Yes     C:\\tc001.jpg
TC002         Pass          Yes     C:\\tc002.jpg

我尝试使用以下代码从link导出Word中的列表。

 private void button1_Click(object sender, EventArgs e)
 {
            SaveFileDialog sfd = new SaveFileDialog();
            sfd.Filter = "Word Documents (*.doc)|*.doc";
            sfd.FileName = "time.doc";
            if (sfd.ShowDialog() == DialogResult.OK)
            {              
                DataGridView newdgv = new DataGridView();
                newdgv = dataGridView1.RemoveEmptyColumns();
                ToCsV(newdgv, sfd.FileName); 
            }         

 }

private void ToCsV(DataGridView dGV, string filename)
        {
            string stOutput = "";
            // Export titles:
            string sHeaders = "";
            for (int j = 0; j < dGV.Columns.Count; j++)
                sHeaders = sHeaders.ToString() + Convert.ToString(dGV.Columns[j].HeaderText) + "\t\t";            
            stOutput += sHeaders + "\r\n";
            // Export data.
            for (int i = 0; i < dGV.RowCount; i++)
            {
                string stLine = "";
                for (int j = 0; j < dGV.Rows[i].Cells.Count; j++)
                    stLine = stLine.ToString() + Convert.ToString(dGV.Rows[i].Cells[j].Value) + "\t";
                stOutput += stLine + "\r\n";              
            }
            Encoding utf16 = Encoding.GetEncoding(1254);
            byte[] output = utf16.GetBytes(stOutput);
            FileStream fs = new FileStream(filename, FileMode.Create);
            BinaryWriter bw = new BinaryWriter(fs);
            bw.Write(output, 0, output.Length); //write the encoded file
            bw.Flush();
            bw.Close();
            fs.Close();
        }

我尝试添加以下代码,使用Interop

在单词中添加单个图像
doc.InlineShapes.AddPicture("C:\\tc001.jpg");

但是如何将导出列表方法中的屏幕截图图像添加到Word文档中 请提出任何建议。

0 个答案:

没有答案