Top Banner
DXF file format PRESENTED BY: MAHA MOSTAFA ELZIADY MAHMOUD SALAH ELDIN MOHAMED HASHEM PRESENTED TO : DR. MOHAMED AWAD SRMANF
26
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: DXF File Format Presentation

DXF file formatPRESENTED BY: MAHA MOSTAFA ELZIADY

MAHMOUD SALAH ELDIN MOHAMED HASHEM

PRESENTED TO : DR. MOHAMED AWAD

SRMANF

Page 2: DXF File Format Presentation

Content

Neutral data files

Neutral data files examples

DXF file

DXF structure

Example

Page 3: DXF File Format Presentation

Neutral Data Files

Neutral data files and neutral file interfaces are needed in order to exchange product data between CAD systems

Neutral data file

Page 4: DXF File Format Presentation

Neutral Data Files Examples

DXF IGES STEP PDES VDAIS VDAFS

Page 5: DXF File Format Presentation

DXF file

AutoCAD DXF (Drawing Interchange Format, or Drawing Exchange Format). DXF was originally introduced in December 1982 as part of AutoCAD 1.0, and was intended to provide an exact representation of the data in the AutoCAD native file format

Page 6: DXF File Format Presentation

DXF Structure

Header Classes Tables Blocks Entities Objects End of file

Page 7: DXF File Format Presentation

HEADER

General information about the drawing. Each parameter has a variable name and an associated value.

Page 8: DXF File Format Presentation

CLASSES

Holds the description of any application-defined classes of objects that may be instantiated in the BLOCKS or ENTITIES sections.

Page 9: DXF File Format Presentation

TABLES

Contains several lists of information used in the rest of the drawing, such as the list of line types, layer names, fonts, and preset views of the drawing

Page 10: DXF File Format Presentation

BLOCKS

Contains predefined drawing elements that might be present in the drawing. For example, a block could define a standard door knob that is placed on every door in a drawing. Block definitions are referenced in the ENTITIES section with the INSERT command

Page 11: DXF File Format Presentation

ENTITIES

Contains the actual object data of the drawing. This can include raw data such as LINE and ARC entities as well as INSERT commands that place a predefined block definition at a certain position in the drawing.

Page 12: DXF File Format Presentation

OBJECTS

Contains non-graphical parts of the drawing. All entities that are not part of the entities or symbol tables are "objects." For example, AutoCAD dictionaries are stored here

Page 13: DXF File Format Presentation

END OF FILE

The end of the DXF data is marked with an EOF directive on the last line of the file.

Page 14: DXF File Format Presentation

DXF file example

CAD3.dxf

Page 15: DXF File Format Presentation

0 = Indicates the start of a new section

Page 16: DXF File Format Presentation

2 = Indicates the name of the section

Page 17: DXF File Format Presentation

9 = Variable name identifier (used only in HEADER section

of the DXF file)

Page 18: DXF File Format Presentation

Indicates the version of the CAD program

Page 19: DXF File Format Presentation

1 = Text value for an entity

Page 20: DXF File Format Presentation

X, Y, and Z drawing extents lower-left corner

Page 21: DXF File Format Presentation

X value of the lower-left corner point

Page 22: DXF File Format Presentation

Y value of the lower-left corner point

Page 23: DXF File Format Presentation

Z value of the lower-left corner point

Page 24: DXF File Format Presentation

X, Y, and Z drawing extents upper-right corner

Page 25: DXF File Format Presentation

Different options in program(0 = off , 1 = on )

Page 26: DXF File Format Presentation

Thank You