Thickness of converted tiff

Discuss and ask questions about CAD .NET library.

Moderators: SDS, support, admin

Post Reply
Yoshitoki
Posts: 5
Joined: 30 Jan 2014, 10:39

Thickness of converted tiff

Post by Yoshitoki » 13 Feb 2014, 11:58

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.

support
Posts: 3272
Joined: 30 Mar 2005, 11:36
Contact:

Re: Thickness of converted tiff

Post by support » 17 Feb 2014, 14:19

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.
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support

Post Reply