Announcements

Starting in December, we will archive content from the community that is 10 years and older. This FAQ provides more information.

Is there any way to batch convert true colours to the nearest index colour ? Lisp ? Software ?

tsunsang2412
Observer
Observer

Is there any way to batch convert true colours to the nearest index colour ? Lisp ? Software ?

tsunsang2412
Observer
Observer

Is there any way to batch convert true colours to the nearest index colour ? Lisp ? Software ? 

Since nowadays autocad drawings converted from BIM revit and darwing always use true colours which cannot be limited by the plotstyle. Changing them one by one is time-consuming. 

Any suggestion ? 

Thank you for your attention.

 

 

 

Colours - AutoCAD 2019.png

 

0 Likes
Reply
208 Views
2 Replies
Replies (2)

cadffm
Consultant
Consultant

Hi,

 

quick&dirty: Save a copy in dxf2000 format (saveas dxf2000) and reopen the file.

 

But i am sure you will find some tools too.

In Lisp it is simple to remove gc 420&430 from entities list

(entmod(vl-remove-if '(lambda(x)(member (car x) '(420 430))) (entget ename)))

 

 

 

 

Use your favorite searchengine and search for: AutoCAD convert truecolor to index color

or similar..

 

Sample hit: Click!

 

 

 

Sebastian

0 Likes

pendean
Community Legend
Community Legend
0 Likes