土木在线论坛 \ 建筑设计 \ CAD下载及教程 \ 梦想云图Node.JS服务 ( 最近更新时间:2022-12-30 10:04:50 )

梦想云图Node.JS服务 ( 最近更新时间:2022-12-30 10:04:50 )

发布于:2022-12-30 15:25:30 来自:建筑设计/CAD下载及教程 [复制转发]


说明

后台提供梦想Node.JS服务,方便调用控件后台功能,Windows服务程序所在目录:Bin\MxDrawServer\Windows,Linux服务程序所在目录:Bin\Linux\MxDrawServer

ws.png


ws2.png

启动服务

Windows:进入Bin\MxDrawServer\Windows目录,运行start.bat启动服务,如下图:

图片2.png

Linux: 进入Bin\Linux\MxDrawServer,

执行如下命令,增加文件的执行权限

su rootchmod -R 777 *


如下:

linuserver.png

运行: ./node app.js 启动服务

服务启动后,默认会在1337端口监听,目录下有个ini.js文件,编辑该文件,配置服务参数,如下图:

图片4.png

服务使用

A.上传文件,DWG文件格式转换

服务接口说明:

直接调用POST对服务器上的文件进行转换:

服务接口说明:

*  POST users { cmd: "convert", file: "O:/1.dwg" }

*  file:  需要转的cad文件路径

如下代码:

 $.ajax({

            url: 39;http://localhost:1337/users39;,

            data: { cmd: "convert", file: "O:/1.dwg" },

            method: 39;post39;

        }).success(function (res) {

            console.log(res);

        })

前端上传文件转换如下:

POST convert file;file是选择的文件.

该接口后台源码在Bin\MxDrawNode\MxDrawNode\src\mxconvert\MxConvert.ts 中的CadToMx

参考例子:Bin\MxDrawServer\Test\sample.html

代码如下:

图片5.png

默认文件转换后存放位置如下图:

图片6.png

B. 保存批注到DWG文件

服务接口说明:

*  POST savecomment {filename:保存到的DWG文件;savefile :保存后的dwg, userConvertPath:false}

*  userConvertPath: 默认值是false,把当前图上的批注内容保存到指定的dwg文件中

*  filename: 是个相对路径,默认是相对于后台程序所在目录Bin\Release(windows),Bin\Linux\Bin(linux)

*  如果userConvertPath为接true,相对于Bin\Release\ini.json [linux:Bin\Linux\Bin\ini.json] 中的nodeConvert.path设置值 

*  savefile: 也是个相对路径,同filename。该接口后台源码在Bin\MxDrawNode\MxDrawNode\src\mxconvert\SaveCommentToDwg.ts 中的SaveCommentToDWG.do 

参考例子:SRC\sample\Browse\VueBrowse,代码如下:

图片7.png

demo运行后,点击“保存到DWG文件”,查看接口调用效果:

图片8.png

C. 得到到DWG文件中信息 

参考例子: Bin\MxDrawServer\Test\sample.html 

服务接口说明:

POST users {cmd:"getcaddata",cadfile:"1.dwg",outfile:"1.dwg.json"} 

 代码如下:

function TestPost(){

        $.ajax({

            url:39;http://localhost:1337/users39;,

            data:{cmd:"getcaddata",cadfile:"1.dwg",outfile:"1.dwg.json"},

            method:39;post39;       

        }).success(function (res){

            console.log(res);

})

}


getcaddata的实现,参见“梦想控件2-后台读写CAD文件.doc”执行结果如下:

图片10.png



D.  DWG文件转成PDF

参考例子: Bin\MxDrawServer\Test\sample.html 

服务接口说明:

POST tools { cmd: "cadtopdf", param: "file=O:/1.dwg" },

 代码如下:

 $.ajax({

            url: 39;http://localhost:1337/users/tools39;,

            data: { cmd: "cadtopdf", param: "file=O:/1.dwg" },

            method: 39;post39;

        }).success(function (res) {

            console.log(res);

        })

E.  DWG文件转成JPG

参考例子: Bin\MxDrawServer\Test\sample.html 

服务接口说明:

POST tools { cmd: "cadtopdf", param: "file=O:/1.dwg" },

 代码如下:

$.ajax({

            url: 39;http://localhost:1337/users/tools39;,

            data: { cmd: "cadtojpg", param: "file=O:/1.dwg" },

            method: 39;post39;

        }).success(function (res) {

            console.log(res);

        })

F.  对CAD图纸剪切,剪切输出pdf,dwg

参考例子: Bin\MxDrawServer\Test\sample.html 

服务接口说明:

POST tools { cmd: "cutcad", param: "file=O:/hhhh.dwg out=O:/1.pdf lbx=60009.152793 lby=42457.503649 rtx=120145.567345 rty=85507.693766"},

out传的值扩展名是pdf输出pdf文件,是dwg时输出dwg

代码如下:

$.ajax({

            url: 39;http://localhost:1337/users/tools39;,

            data: { cmd: "cutcad", param: "file=O:/hhhh.dwg out=O:/1.pdf lbx=60009.152793 lby=42457.503649 rtx=120145.567345 rty=85507.693766"},

            method: 39;post39;

        }).success(function (res) {

            console.log(res);

        })

E.  根据图框,折分pdf

参考例子: Bin\MxDrawServer\Test\sample.html 

服务接口说明:

POST tools { cmd: "cadtopdf", file: "tk.dwg"},

调用 代码如下:

$.ajax({

            url: 39;http://localhost:1337/users39;,

            data: { cmd: "cadtopdf", file: "O:/tk.dwg"},

            method: 39;post39;

        }).success(function (res) {

            console.log(res);

        })

该功能的源码在:

Bin\MxDrawNode\MxDrawNode\src\mxconvert\CADToPDF.ts


全部回复(0 )

只看楼主 我来说两句抢沙发

CAD下载及教程

返回版块

52.07 万条内容 · 656 人订阅

猜你喜欢

阅读下一篇

CAD中特殊符号输入技巧

 在AutoCAD 的文本编辑器中,标高或公差用的±号输入%%p 就可以完成,直径φ则用%%c即可, 角度°则用%%d,很多特殊符号输入也可以通过另一种方法实现,具体操作方法是: 第一种:单击符号按钮打开下拉选项根据需要选择并点击即可把符号插入到文本框中。 第二种:单击文本编辑器右上角的“选项”按钮,在打开的下拉菜单中选择“符号”子菜单中的相应命令。

回帖成功

经验值 +10