לשנות את גודל הטקסט עבור DXF/DWG

איך לשנות את גודל הטקסט עבור DXF/DWG

בעיה: איך לשנות את גודל הטקסט עבור DXF/DWG.

טיפים: כדי לעשות זאת, ניתן להשתמש בפרמטר TextHeight בישותים, אך יש לקחת בחשבון שגישה לפרמטר עשויה להיות שונה עבור אובייקטים שונים.

דוגמה:

var fileName = @"facade_example.dwg";
using CadImage cadImage = (CadImage) Image.Load(fileName);
foreach (CadBaseEntity entity in cadImage.Entities)
{
if (entity is CadMText text && text.Text.Contains("Etage"))
{
text.InitialTextHeight = 120;
}
if (entity is CadText cadText)
{
cadText.TextHeight = 120;
}
if (entity is CadMLeader leader)
{
leader.ContextData.TextHeight = 120;
}
if (entity is CadTolerance tolerance)
{
cadImage.DimensionStyles[tolerance.DimensionStyleName].Dimtxt = 120;
}
}
cadImage.Save("facade_example_inc_text.pdf", new PdfOptions());