首页 | 公司简介 | 数据恢复 | 成功案例 | 技术中心 | 客户服务 | 服务报价 | 联系我们 | 技术论坛  
 
  北京总部: 4006-505-808
  上 海 部: 021-58358765
  深 圳 部: 0755-83692929
  浙 江 部: 13666673722
  广 州 部: 020-83821091
  重 庆 部: 023-86870422
  福 建 部: 0591-83300680
  哈尔滨部: 13946167430
  其它地区: 4006-505-808

中国石油管理局-Oracle数据库恢
工商银行山东分行-AIX删除LV数
濮阳市地方税务局-CHKDSK后数据
台湾HD公司-FreeBSD Nas无法启
promise乔鼎硬盘阵列数据恢复成
IBM EXP300 磁盘阵列数据恢复成
NAS 8100无法挂载数据卷
Liteon-Dell 2850服务器数据恢

RAID损坏后 对数据的完整备份
LINUX FSCK数据出错灾难应急方
误删除、误格式化数据灾难应急
误GHOST、误一键恢复灾难应急方
磁盘未被格式化,是否格式化数据
raid磁盘阵列OFFLINE后的应急方
硬盘出现异响应急处理
您当前的位置:首页 >> 技术中心 >> 文件修复文栏 >> 正文

drawing interchange and file formats release 12(AutoCAD DXF 12.0版文件格式说明)

thus a program can easily read the value following a group code 
without knowing the particular use of this group in an item in the 
file. the appearance of values in the dxf file is not affected by 
the setting of the units command: coordinates are always represented 
as decimal (or possibly scientific notation if very large) numbers, 
and angles are always represented in decimal degrees with zero 
degrees to the east of origin.
variables, table entries, and entities are described by a group that 
introduces the item, giving its type and/or name, followed by 
multiple groups that supply the values associated with the item. in 
addition, special groups are used for file separators such as 
markers for the beginning and end of sections, tables, and the file 
itself.
entities, table entries, and file separators are always introduced 
with a 0 group code that is followed by a name describing the item.
note: the maximum dxf file string length is 256 characters. if your 
autocad drawing contains strings that exceed this number, those 
strings are truncated during dxfout. if your dxf file contains 
strings that exceed this number, dxfin will fail.
group codes
-----------
group codes are used both to indicate the type of the value of the 
group, as explained earlier, and to indicate the general use of the 
group. the specific function of the group code depends on the actual 
variable, table item, or entity description. this section indicates 
the general use of groups, noting as "(fixed)" any that always have 
the same function.
table 11-2. autocad entity group codes (by number) 
+===============================================================+
| group code | value type                                       |
|------------|--------------------------------------------------|
| 0          | identifies the start of an entity, table entry,  |
|            | or file separator. the type of entity is given   |
|            | by the text value that follows this group        |
|------------|--------------------------------------------------|
| 1          | the primary text value for an entity             |
|------------|--------------------------------------------------|
| 2          | a name: attribute tag, block name, and so on.    |
|            | also used to identify a dxf section or table name|
|------------|--------------------------------------------------|
| 3-4        | other textual or name values                     |
|------------|--------------------------------------------------|
| 5          | entity handle expressed as a hexadecimal string  |
|            | (fixed)                                          |
|------------|--------------------------------------------------|
| 6          | line type name (fixed)                           |
|------------|--------------------------------------------------|
| 7          | text style name (fixed)                          |
|------------|--------------------------------------------------|
| 8          | layer name (fixed)                               |
|------------|--------------------------------------------------|
| 9          | variable name identifier (used only in header    |
|            | section of the dxf file)                         |
|------------|--------------------------------------------------|
| 10         | primary x coordinate (start point of a line or   |
|            | text entity, center of a circle, etc.)           |
|------------|--------------------------------------------------|
| 11-18      | other x coordinates                              |
|------------|--------------------------------------------------|
| 20         | primary y coordinate. 2n values always           |
|            | correspond to 1n values and immediately follow   |
|            | them in the file                                 |
|------------|--------------------------------------------------|
| 21-28      | other y coordinates                              |
|------------|--------------------------------------------------|
| 30         | primary z coordinate. 3n values always           |
|            | correspond to 1n and 2n values and immediately   |
|            | follow them in the file                          |
|------------|--------------------------------------------------|
| 31-37      | other z coordinates                              |
|------------|--------------------------------------------------|
| 38         | this entity's elevation if nonzero (fixed).      |
|            | exists only in output from versions prior to r11 |
|------------|--------------------------------------------------|
| 39         | this entity's thickness if nonzero (fixed)       |
|------------|--------------------------------------------------|
| 40-48      | floating-point values (text height, scale        |
|            | factors, etc.)                                   |
|------------|--------------------------------------------------|
| 49         | repeated value - multiple 49 groups may appear   |
|            | in one entity for variable length tables (such   |
|            | as the dash lengths in the ltype table). a 7x    |
|            | group always appears before the first 49 group   |
|            | to specify the table length                      |
|------------|--------------------------------------------------|
| 50-58      | angles                                           |
|------------|--------------------------------------------------|
| 62         | color number (fixed)                             |
|------------|--------------------------------------------------|
| 66         | "entities follow" flag (fixed)                   |
|------------|--------------------------------------------------|
| 67         | identifies whether entity is in model space or   |
|            | paper space                                      |
|------------|--------------------------------------------------|
| 68         | identifies whether viewport is on but fully off  |
|            | screen, is not active, or is off                 |
|------------|--------------------------------------------------|
| 69         | viewport identification number                   |
|------------|--------------------------------------------------|
| 70-78      | integer values such as repeat counts, flag       |
|            | bits, or modes                                   |
|------------|--------------------------------------------------|
| 210,       | x, y, and z components of extrusion direction    |
| 220,       | (fixed)                                          |
| 230        |                                                  |
|------------|--------------------------------------------------|
| 999        | comments                                         |
|------------|--------------------------------------------------|
| 1000       | an ascii string (up to 255 bytes long) in        |
|            | extended entity data                             |
|------------|--------------------------------------------------|
| 1001       | registered application name (ascii string up to  |
|            | 31 bytes long) for xdata (fixed)                 |
|------------|--------------------------------------------------|
| 1002       | extended entity data control string ("{" or "}") |
|            | (fixed)                                          |
|------------|--------------------------------------------------|
| 1003       | extended entity data layer name                  |
|------------|--------------------------------------------------|
| 1004       | chunk of bytes (up to 127 bytes long) in         |
|            | extended entity data                             |
|------------|--------------------------------------------------|
| 1005       | extended entity data database handle             |
|------------|--------------------------------------------------|
| 1010,      | extended entity data x, y, and z coordinates     |
| 1020,      |                                                  |
| 1030       |                                                  |
|------------|--------------------------------------------------|
| 1011,      | extended entity data x, y, and z coordinates of  |
| 1021,      | 3d world space position                          |
| 1031       |                                                  |
|------------|--------------------------------------------------|
| 1012,      | extended entity data x, y, and z components of   |
| 1022,      | 3d world space displacement                      |
| 1032       |                                                  |
|------------|--------------------------------------------------|
| 1013,      | extended entity data x, y, and z components of   |
| 1023,      | 3d world space direction                         |
| 1033       |                                                  |
|------------|--------------------------------------------------|
| 1040       | extended entity data floating-point value        |
|------------|--------------------------------------------------|
| 1041       | extended entity data distance value              |
|------------|--------------------------------------------------|
| 1042       | extended entity data scale factor                |
|------------|--------------------------------------------------|
| 1070       | extended entity data 16-bit signed integer       |
|------------|--------------------------------------------------|
| 1071       | extended entity data 32-bit signed long          |
+---------------------------------------------------------------+

本新闻共5页,当前在第4页  1  2  3  4  5  

上一篇:drawing interchange and file formats(AutoCAD DXF 10.0版文件格式说明)
下一篇:探索NTFS
返回首页 | 联系我们 | 关于我们 | 招聘信息 | 友情链接 | 网站地图 | 合作伙伴

版权所有 北京北亚数据恢复中心
24小时免费咨询电话:4006-505-808 或 800-810-5880
中关村部:北京市海淀区中关村大街11号E世界A座832B室
皂君庙部:北京市海淀区学院南路68号吉安大厦C座(汇智楼)528室
京ICP备07502730