C#里面插入图片
static void Main(){
// 生成电子文件
string filePath = "C:\\公文.docx";
StreamWriter sw = File.CreateText(filePath);
sw.Write("西安");
sw.Close();
我想往里面 加一张图片代码怎么写 据我所知,StreamWrite 不能正确的写入 docx,写入后打开会报错 https://blog.csdn.net/qq_40741855/article/details/80978352 StreamWriter 好像不能操作word那些东西,
https://jingyan.baidu.com/article/6b97984dfaa94c1ca2b0bffc.html
页:
[1]