Thickness of converted tiff
Moderators: SDS, support, admin
Thickness of converted tiff
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.
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
Hello Yoshitoki,
It's possible to thin all lines by ignoring a line weight:
or by adjusting the lineweight scale value (1.0 by default):
Mikhail.
It's possible to thin all lines by ignoring a line weight:
Code: Select all
cadImage.Painter.Settings.IsShowLineWeight = false;
Code: Select all
cadImage.Painter.Settings.LineWeightScale = 0.5;
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support