Page 1 of 1

Thickness of converted tiff

Posted: 13 Feb 2014, 11:58
by Yoshitoki
Hellow,

There is the function, in my application, that convert to TIFF from DWG by using SaveToStream method in the CAD Import .Net dll V9.
I'm troubled that the line and strings of converted TIFF file is thick.
I try it with the Demo Viewer and the result is the same.

What is wrong? Are there any properties of the line?
Please tell me how to thin the line.

Re: Thickness of converted tiff

Posted: 17 Feb 2014, 14:19
by support
Hello Yoshitoki,

It's possible to thin all lines by ignoring a line weight:

Code: Select all

cadImage.Painter.Settings.IsShowLineWeight = false;
or by adjusting the lineweight scale value (1.0 by default):

Code: Select all

cadImage.Painter.Settings.LineWeightScale = 0.5;
Mikhail.