摘要:
C#实例代码: /// <summary> /// 图片转base64 /// </summary> /// <param name="bmp"></param> /// <returns></returns> private string ImgToByte(Bitmap bmp) { strin 阅读全文
摘要:
//实例代码: /// <summary> /// 添加节点事件 /// </summary> /// <param name="tnodes"></param> /// <param name="nodeName">父节点名称</param> /// <param name="subNodeNam 阅读全文
摘要:
1.使用NuGet添加 Spire.Doc 2.使用方式 Document document = new Document(); document.LoadFromFile(documentPath); //参数解释为 pageIndex, pageCount, ImageType Image[] 阅读全文
摘要:
1.复制指定文件到指定位置: public void AddFile(string sourcefile, string targetfile) { File.Copy(sourcefile, targetfile, true); } 2.获取指定目录下的所有文件夹名称,返回List public 阅读全文