资源简介
DWGdirect_NET_3_02,由于公司需求,最近也是找了好久才终于找到C#.NET读取DWG格式的CAD文件信息方法,采用 DWGdirect_NET_3_02动态库里的方法,可以完美的读到DWG文件的信息,这里分享出来,压缩文件包括了DEMO和动态库文件,DEMO可以完美运行(VS2010测试通过,添加的自测的部分注释!)
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using DWGdirect.DatabaseServices;
using DWGdirect.Geometry;
using DWGdirect.GraphicsInterface;
using DWGdirect.Colors;
using DWGdirect;
// note that Getobject doesn‘t work in Acad 2009 so we use “obsolete“ Open instead
#pragma warning disable 618
namespace OdReadExMgd
{
class DbDumper
{
public DbDumper() { }
static string toDegreeString(double val)
{
return (val * 180.0 / Math.PI) + “d“;
}
static string toHexString(int val)
{
return string.Format(“0{0:X}“ val);
}
static string toArcSymbolTypeString(int val)
{
switch (val)
{
case 0: return “Precedes text“;
case 1: return “Above text“;
case 2: return “None“;
}
return “???“;
}
/************************************************************************/
/* Shorten a path with ellipses. */
/************************************************************************/
static string shortenPath(string Inpath int maxPath)
{
string path = Inpath;
/**********************************************************************/
/* If the path fits just return it */
/**********************************************************************/
if (path.Length <= maxPath)
{
return path;
}
/**********************************************************************/
/* If there‘s no backslash just truncate the path */
/**********************************************************************/
int lastBackslash = path.LastIndexOf(‘\\‘);
if (lastBackslash < 0)
{
return path.Substring(0 maxPath - 3) + “...“;
}
/**********************************************************************/
/* Shorten the front of the path */
/**********************************************************************/
int fromLeft = (lastBackslash - 3) - (path.Length - maxPath);
// (12 - 3) - (19 - 10) = 9 - 9 = 0
if ((lastBackslash <= 3) || (fromLeft < 1))
{
path = “...“ + path.Substring(lastBackslash);
}
else
{
path = path.Substring(0 fromLeft) + “...“ + path.Substring(lastBackslash);
}
/**********************************************************************/
/* Truncate the path */
/**********************************************************************/
if (path.Length > maxPath)
{
path = path.Substring(0 maxPath - 3) + “...“;
}
return path;
}
static string shortenPath(string Inpath)
{
return shortenPath(Inpath 40);
}
/****************
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-12-04 22:58 DWGdirect_NET_3_02\
目录 0 2012-12-04 21:36 DWGdirect_NET_3_02\bin\
文件 98968 2009-11-11 22:54 DWGdirect_NET_3_02\bin\AcIdViewObj_3.02_8.drx
文件 86680 2009-11-11 22:54 DWGdirect_NET_3_02\bin\AsdkSmileyDb_3.02_8.drx
文件 90776 2009-11-11 22:54 DWGdirect_NET_3_02\bin\AutoSurfServices_3.02_8.drx
文件 189080 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DbCommands_3.02_8.drx
文件 709272 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_AcisBuilder_3.02_8.dll
文件 14488 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_Alloc_3.02_8.dll
文件 311960 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Ave_3.02_8.drx
文件 16024 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_BmpExport_3.02_8.dll
文件 307864 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_BrepRenderer_3.02_8.dll
文件 94872 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_Br_3.02_8.dll
文件 283288 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_DbRoot_3.02_8.dll
文件 8172184 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_Db_3.02_8.dll
文件 328344 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_Dwf7Export_3.02_8.dll
文件 246424 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Dwf7Import_3.02_8.drx
文件 123544 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_DwfUnderlay_3.02_8.drx
文件 381592 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_DynBlocks_3.02_8.drx
文件 369304 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_FtFontEngine_3.02_8.drx
文件 1057432 2009-11-11 22:53 DWGdirect_NET_3_02\bin\DD_Ge_3.02_8.dll
文件 701080 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Gi_3.02_8.dll
文件 475800 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Gs_3.02_8.dll
文件 4432536 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Mgd_3.02_8.dll
文件 238232 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_PdfExport_3.02_8.dll
文件 565912 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Root_3.02_8.dll
文件 381592 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_Sm_3.02_8.drx
文件 37016 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_STLExport_3.02_8.drx
文件 221848 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DD_SvgExport_3.02_8.drx
文件 303768 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DWFCore.dll
文件 1516184 2009-11-11 22:54 DWGdirect_NET_3_02\bin\DWFToolkit.dll
文件 676504 2009-11-11 22:55 DWGdirect_NET_3_02\bin\ExCustObjs_3.02_8.drx
............此处省略210个文件信息
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- ASP.NET程序开发范例宝典 百度云
- asp.net FileUpload 上传进度条
- 大型比赛竞赛抽签系统 可打印 c# vs
- 很好用的一个asp.net反编译软件
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- asp.net实现qq登陆
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- 亮剑asp.net案例导航项目开发
- 亮剑ASP.NET项目开发案例导航-part03共三
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
评论
共有 条评论