Reputation: 45
I want to change the color DWG to monochrome in the Forge viewer. Is there any option to change it to monochrome?
Upvotes: 1
Views: 52
Reputation: 2196
you can use the method setGrayscale to switch to black and white
viewer.setGrayscale(true)
The other method setSwapBlackAndWhite could swap the background and front color
Upvotes: 1