CADconv 2026 AI - DWG or DXF Data Transfer Tool

Easy CAD data transfer using DWG or DXF files

CADconv 2026 AI

• DWG or DXF data transfer tool
• CAD migration programming
• Advanced layer conversion with CAD Interchange Language
• Correction of Unicodes, texts and special characters

US $ 690.00 plus VAT

Annual subscription




CADconv 2026 AI is a modern standalone application that directly manipulates the DWG or DXF database structure.

With CADconv 2026 AI, CAD users can analyze, edit and fully automatically adapt any drawing to their own CAD conventions and eliminate all imperfections in the design.

The time for the following tasks can be reduced to a minimum with CADconv 2026 AI:


• Programming layer structure changes
• Change advanced linetypes
• Advanced color change
• Change advanced line weights
• Advanced font replacement
• Convert special characters and Unicode
• Advanced customization of text properties
• Advanced 3D to 2D transitions
• Direct connection to AutoCAD or CAD.direct
• Programming with free user scripts

CADconv 2026 AI offers a special programming language for advanced changing of the layer structure. The abbreviation "CADconv AI" comes from the full name CAD Interchange Language. Almost all complicated layer structure changes are made possible with this program.

CADconv 2026 AI provides special methods for drawing translations between different languages. All texts, layer names and attribute names used in the drawing are listed and can be automatically translated into any language.

CADconv 2026 AI supports all Unicode characters for Russian, Arabic, Chinese, Japanese and other similar texts.

The structure and components of a drawing can be analyzed using the analysis function in the CADconv 2026 AI program. All layers, text styles, special characters, symbols, blocks, line types, fonts or colors used are listed in an analysis file and can be selected on the screen.

All CADconv 2026 AI settings can be saved and imported as required. All conversions defined in CADconv 2026 AI can be carried out simultaneously on thousands of files at the push of a button.

All CADconv 2026 AI conversions are also performed in DWG blocks of any nesting depth.

CADconv 2026 AI Key Features

Analysis of the DWG, DXF structure

  • List of layer names used
  • List of texts used
  • List of block names used
  • List of special characters and Unicodes used

Conversion of text properties

  • Scale text width and height by a factor
  • Change text positions
  • Convert italic text to regular text
  • Convert all text to left-leaning text
  • Convert over or underlined text
  • Reconstruction of special characters

Conversion of text styles

  • Text style manipulation
  • Font manipulation
  • Conversion of text big fonts
  • Standardization of text heights according to ISO

Conversion of colors

  • Color assignment by layer
  • Set them all to the same color
  • All Colors &Change the color of the layer

 Conversion of LineTypes

  • ByLayer linetype mapping
  • All linetypes Switch to layer linetype

Conversion of X, Y, Z coordinates

  • Scaling of X, Y coordinates
  • Transform the origin of the drawing to Min X and Min Y
  • Flat z coordinates

Block and group conversions

  • Convert dimensions to blocks named "DIMENSION"
  • Break blocks into primitives
  • Decompose groups into original objects

Programming example for layer conversion with CADconv AI:"Sort all dimensions in one level"

if{
[x].isA("Dimension")
}then{
[x].setLayerName("Dimension") and
[x].setColor(2)
}
;*******************************************************************
if{
[x].isBlockMember("/*D*")
}then{
[x].setLayerName("Dimension") and
[x].setColor(2)
}
;*******************************************************************
if{
[x].isLayerName("Dimension") and
[x].isA("Text or MultiText")
}then{
[x].setColor(3)
}
;*******************************************************************
if{
[x].isDisplayColor(1)
}then{
[x].setColor(2) and
[x].setWeight(0.250000) and
[x].setLock(TRUE)
}
;*******************************************************************
if{
[x].isDisplayColor(2)
}then{
[x].setColor(1) and
[x].setWeight(0.350000)
}

Change block properties

  • Insert all defined blocks below 0,0,0
  • Set Z Scale Factor Equal to X Factor
  • Replace all block names with a sequential number
  • Replace all layer names with a sequential number


Removing "Scrap Objects" and cleaning coordinates


Remove selected element types and elements at selected levels


Remove the selected text type

  • Remove all text with no content or just underscores
  • Remove all text with selected style
  • Remove all text with selected font
  • Convert all multitexts to text

Remove selected blocks

  • Embed external references (Xref's)

Remove objects

  • Remove all hatches
  • Remove all solids
  • Convert all lines with L = 0 to points
  • Remove all dots
  • Remove all elements
  • Remove all 3D surfaces
  • Remove all symbols (shapes)
  • Remove all viewports

Programming example for plane conversion with CADconv AI:"Change advanced linetypes"

if{
[x].isLayerTable(TRUE) and
[x].isLineType("PHANTOM")
}then{
[x].setLineType("ACAD_ISO05W100")
}
;*******************************************************************
if{
[x].isLineType("PHANTOM")
}then{
[x].setLineType("ACAD_ISO05W100") and
[x].setLtFactor(50.000000)
}
;*******************************************************************
if{
[x].isLayerTable(TRUE) and
[x].isLineType("DASHDOT")
}then{
[x].setLineType("ACAD_ISO04W100")
}
;*******************************************************************
if{
[x].isLineType("DASHDOT")
}then{
[x].setLineType("ACAD_ISO04W100") and
[x].setLtFactor(50.000000)
}
;*******************************************************************
if{
[x].isLayerTable(TRUE) and
[x].isLineType("BORDER")
}then{
[x].setLineType("ACAD_ISO13W100")
}
;*******************************************************************
if{
[x].isLineType("BORDER")
}then{
[x].setLineType("ACAD_ISO13W100") and
[x].setLtFactor(50.000000)
}

CADconv AI Key Features:


Decompose the hatch into original elements

Clean polyline vertexes


Replace DWG, DXF elements

  • Replace all solids with line outlines
  • Replace all tracks with solids
  • Replace all 3D surfaces with line contours
  • Decompose proxies into original elements
  • Replace ellipses with polylines

 Replace header variables

  • Replacing the linetype factor
  • ExtMin, ExtMax
  • model space
  • Filling bodies
  • Presentation of the points
  • Text Fast Mode

Replace attributes with text

Replace polylines

  • Decompose all polylines into lines and arcs
  • Bind lines and arcs together to form polylines


Close contours

Change the insertion points of blocks

Remove duplicate items

Programming example for plane conversion with CADconv 2026 AI:"Advanced Color Changes"

if{
[x].isDisplayColor(ByLayer)
}then{
[x].setColor(LikeLayer)
}
;*******************************************************************
if{
[x].isDisplayColor(1)
}then{
[x].setColor(2) and
[x].setWeight(0.250000) and
[x].setLock(TRUE)
}
;*******************************************************************
if{
[x].isDisplayColor(2)
}then{
[x].setColor(1) and
[x].setWeight(0.350000)and
[x].setLock(TRUE)
}
;*******************************************************************
if{
[x].isDisplayColor(RGB(25,25,25))
}then{
[x].setColor(4) and
[x].setWeight(0.180000)and
[x].setLock(TRUE)
}

Conversion of text and special characters

  • Unicode character conversion
  • Conversion of CAD specific characters to Unicode
  • Conversion of tolerance symbols to Unicode
  • Translation into different languages
  • List of Unicode characters

 Font conversion

  • Specific font replacement
  • Scaling of text heights
  • Analysis of the fonts used

 Transformation of the drawing structure

  • Layer name conversion
  • Create new layers
  • Replacing the layer name with the block name
  • Replace layer name with color number
  • Replace layer name with linetype name
  • Exchanging linetypes
  • Scaling of LineType factors
  • Swap and scale polyline width
  • Line weight manipulation
  • Color change using the color mapping table
  • Object height conversion
  • Text height manipulation
  • Exchanging text styles
  • Exchange of blocks
  • Change external reference (Xref) paths
  • Objects marked as "Locked" mark
  • Delete selected items
  • Move selected element types to new layers

 CAD scripts (CAD software supported for script only)

  • Varia scripts
  • Delete file
  • Create Slide
  • Zoom scripts
  • Import from DWG or DXF prototype
  • User initial script
  • User exit script

Programming example for plane conversion with CADconv AI:"Sorting blocks on levels with block names".

if{
[x].isColor(ByBlock)
}then{
[x].setColor(LikeInsert)
}
;*******************************************************************
if{
[x].isColor(ByLayer)
}then{
[x].setColor(LikeLayer)
}
;*******************************************************************
if{
[x].isLineType("ByLayer")
}then{
[x].setLineType("LikeLayer")
}
;*******************************************************************
if{
[x].isWeight(0.000000)
}then{
[x].setWeight(-3 "Default")
}
;*******************************************************************
if{
[x].isBlockMember("*")
}then{
[x].setLayerName("[Block Name]")
}