彩票走势图

VDF常见问题整理(六十六):通过Web服务将VDS另存为WebControl上的DWG

翻译|使用教程|编辑:李显亮|2021-01-19 09:45:21.743|阅读 196 次

概述:本系列教程整理了VectorDraw Developer Framework(VDF)最常见问题,教程整理的很齐全,非常适合新手学习。本文将会介绍如何通过Web服务将VDS另存为WebControl上的DWG。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

VectorDraw Developer Framework(VDF)是一个用于应用程序可视化的图形引擎库。有了VDF提供的功能,您可以轻松地创建、编辑、管理、输出、输入和打印2D和3D图形文件。该库还支持许多矢量和栅格输入和输出格式,包括本地PDF和SVG导出。

点击下载VectorDraw Developer Framework


问:如何通过VectorDraw WebControl将VDS文件保存到DWG / DGN?

答:VectorDraw WebControl只能显示.vds文件,这是我们的web组件的文件格式,所以当你在页面上有一个.vds文件,并且你想把文件保存为DXF/DWG时,你必须创建一个服务,把vds文件上传到服务器上,把它转换为首选的支持的文件格式,然后通过网页下载。

下面是一些关于转换操作的说明。

为了做到这一点,需要编写一个web服务,用vdDocumentComponent引用VDF库,并且有两种方法让你的软件用户能够打开/保存DWG/DGN文件。

  • 如果您的应用程序的用户想要打开/保存DWG/DGN文件,那么他们需要在他们的机器上安装FileConverter(Lite或Full)终端用户应用程序。
  • 另一种方法是成为OpenDesign的会员,如果您还没有成为会员的话,可以使用他们的库,并将其与您的应用程序一起发布(在您应用程序的设置中)。

在这种情况下,必须在 "客户的机器 "中安装OpenDesign库中包含的一些dlls。

        //Javascript code in the client machine
        vdcanvas.vdAfterSaveDocument =function(saveData)
        {
            //get the original filename
            var path = saveData.dataObject.pathname;
            if (!path) path = 'vdDocument.vds';
            //Call the webservice here --> convert(saveData.dataStream,saveData.dataObject.pathname+".dwg");
        }
        vdcanvas.SaveDocument();
 
        //Webservice in the server machine
        //inputdata: inputdata is the data as come from web javascript method .Represents the contents of a vds file
    
        [System.Web.Services.WebMethod]
        public static void convert(string inputdata, string exportedfilename)
        {
            vdDocumentComponent vdc = new vdDocumentComponent();
            vdDocument doc = vdc.Document;
            bool success = doc.FromScriptData(inputdata);
            if (success)

            {
                //save to a temporary relative folder in the server
                string exportedrelativefile = "./Drawings/"+ System.IO.Path.GetFileNameWithoutExtension(exportedfilename)
                success = doc.ExportToFile(exportedrelativefile);
            }
        }

=======================================================

如果您对想要购买正版授权VectorDraw Developer Framework(VDF),可以联系咨询相关问题。


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP