原创|使用教程|编辑:黄竹雯|2019-04-30 14:06:55.000|阅读 341 次
概述:CAD .NET是一款在CAD领域被广泛应用的控件,可以快速准确的阅读DWG和DXF文件,并且通过Windows GDI+方法绘制件,支持多种文件格式,包括DWG、DXF、Gerber、光栅图像等,并支持部分编辑功能。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
CAD .NET是一款在CAD领域被广泛应用的控件,可以快速准确的阅读DWG和DXF文件,并且通过Windows GDI+方法绘制件,支持多种文件格式,包括DWG、DXF、Gerber、光栅图像等,并支持部分编辑功能。
CAD .NET应用领域:
问:我正在寻找可以选择图像的一部分的东西,就像选择一个部分来缩放那个部分,然后打印或导出那个可见的部分?
答:您可以使用重载方法CADImage.SaveToStream的以下签名将CAD图像的一部分保存到MemoryStream:
public virtual void SaveToStream( Stream str, ImageFormat ImgFormat, DRect aCurRect, Rectangle clipRect )
ImgFormat参数指定保存图像的文件格式(Bmp,Jpeg等)。CurRect参数表示当前显示在屏幕上的CAD图像部分,而clipRect确定将保存到流的部分(Stream str)。
将裁剪的部分放入内存流后,可以从中创建新的位图:
MemoryStream ms = new MemoryStream(); ... Bitmap bmp = new Bitmap(ms);
然后使用PrintDocument类在打印机页面上绘制此位图:
public static void PrintBitmap(Bitmap bitmap, string printerName, int paperWidth, int paperHeight) { PrintDocument pd = new PrintDocument(); pd.PrinterSettings.PrinterName = printerName; pd.PrinterSettings.DefaultPageSettings.Landscape = true; pd.PrinterSettings.DefaultPageSettings.PaperSize = new PaperSize("Custom size", paperWidth, paperHeight); pd.DefaultPageSettings.Margins = new Margins(0, 0, 0, 0); pd.PrinterSettings.DefaultPageSettings.Margins = new Margins(0, 0, 0, 0); pd.PrintPage += (sender, args) => { Rectangle m = args.MarginBounds; if ((double)bitmap.Width / (double)bitmap.Height > (double)m.Width / (double)m.Height) { m.Height = (int)((double)bitmap.Height / (double)bitmap.Width * (double)m.Width); } else { m.Width = (int)((double)bitmap.Width / (double)bitmap.Height * (double)m.Height); } args.Graphics.DrawImage(bitmap, m); }; pd.Print(); }
要使用鼠标选择CAD图像的一部分,可以使用CADEditorControl.ClipRectangle工具,如下面的代码示例所示。
using System; using System.Drawing; using System.Drawing.Imaging; using System.Drawing.Printing; using System.IO; using System.Windows.Forms; using CADImport; using CADImport.FaceModule; public partial class Form1 : Form { public Form1() { InitializeComponent(); cadEditorControl1.EditorCADPictureBox.MouseDown += EditorCADPictureBox_MouseDown; cadEditorControl1.EditorCADPictureBox.MouseUp += EditorCADPictureBox_MouseUp; } void EditorCADPictureBox_MouseUp(object sender, MouseEventArgs e) { if (cadEditorControl1.ClipRectangle.Enabled) { MemoryStream ms = new MemoryStream(); DRect curRect = new DRect(cadEditorControl1.ImageRectangleF.Left, cadEditorControl1.ImageRectangleF.Top, 0, cadEditorControl1.ImageRectangleF.Right, cadEditorControl1.ImageRectangleF.Bottom, 0); cadEditorControl1.Image.SaveToStream(ms, ImageFormat.Bmp, curRect, cadEditorControl1.ClipRectangle.ClientRectangle); Bitmap bmp = new Bitmap(ms); PrintBitmap(bmp, "Microsoft Print to PDF", 297, 210); cadEditorControl1.ClipRectangle.DisableRect(); cadEditorControl1.Image.SelectionMode = SelectionEntityMode.Enabled; } } void EditorCADPictureBox_MouseDown(object sender, MouseEventArgs e) { cadEditorControl1.ClipRectangle.EnableRect(RectangleType.Zooming); cadEditorControl1.Image.SelectionMode = SelectionEntityMode.Disabled; }
问:需要确定的是:是否没有方法来裁剪或使用SaveAsDXF在选定区域的DXF中获得完整详细的导出?
答:当涉及到DXF导出时,您不能保存选定的区域,您可以保存某些CAD实体(例如CADImage.SelectedEntities):
CADImage cadImage = new CADImage(); cadImage.InitialNewImage();
PS:放大时,光栅图像会丢失细节(变得模糊和像素化)
问:当加载一个dwg,它有一个文本层,但是根据字体类型,编辑器没有显示它说什么,而是显示了很多字符。加载文件时,有一些方法可以更改这些值的源。
答:文本字符是从存储文本样式使用的字体的字体文件(.shx .ttf)中读取的。似乎给定的文本需要一些SHX字体,但缺少所需的字体或您的程序根本不使用SHX字体。您能否尝试通过CADText.Style.FontName(单行文本)或CADMText.Style.FontName(多行文本)属性确定所需字体的名称?
问:我想更改块内一条线的终点。所以我为该线分配了一个新的终点,但是这些变化是不可见的。根据线的长度等属性似乎很好。如何更改块内线的终点?
答:在块中更改某个实体后,需要为该实体和CADBlock对象调用CADImage.Converter.Loads()方法。例如:
cadImage.Converter.Loads(cadLine); cadImage.Converter.Loads(cadBlock);
当块被插入到图纸作为INSERT实体,你需要调用CADImage.Converter.Loads()也为CADInsert对象并调用CADImage.GetExtents()方法来重新计算该图的范围。
如果更改后发现实体长度改变,显示了新的长度,但选择却是错误的,我们可以尝试使用以下代码更新insert中的行:
cadImage.Converter.Loads(Line) cadImage.Converter.Loads(block) cadImage.SetNewPosEntity(0, 0, 0, insert)
问:在将表单v11更新为v12后,我仍然面临几个问题,其中大多数与选择有关。我正在使用SelectExt()函数,该函数应该在给定点返回所选实体,此函数不返回实体。设置CADSelector.UseShiftToAddSelected = True将返回实体,但也将允许多次选择,这是不需要的。使用Select()而不是SelectExt()返回true,两个函数不应该相同吗?
有一个名为clearPrevSelected(bool)的参数,在v11中:将值设置为true将取消选择其他实体并选择新实体;在v12中:将值设置为true将不会取消选择除选择已选择的实体之外的任何实体。如果要选择未选择的实体,则此函数将返回null。为什么param仍然被称为clearPrevSelected,但不会像以前的版本那样?此参数现在确定是否要选择或取消选择实体,而不是取消选择其他实体。
答:在v12中,CADSelector.SelectExt()方法行为取决于所述的CADSelector.UseShiftToAddSelected属性值。方法的第三个参数(clearPrevSelection)实际上采用Shift键状态(按下并保持或未按下)。 如果不需要多项选择,你应该执行以下操作:
Me.cadImage.SelectExt(e.X, e.Y, False, True)
要通过一次调用清除SelectedEntities和Markers集合,请使用CADImage.Selector.UndoSelect()方法。
问:在CADBlock中添加了几个CADPolylines,最后一个我将它添加到CADInsert中,我控制了CADEditorControl.Image,但是,当我想以DXF格式保存存储在CADInsert中的元素时,它不存储元素也不是CADInsert。
代码如下:
private bool PlaceEntity(CADEntity aEntity) { return PlaceEntity(aEntity, ""); } private bool PlaceEntity(CADEntity aEntity, string aLayoutName) { CADLayout vLayout; if (aLayoutName == "") vLayout = editor.Image.Layouts[0]; else vLayout = editor.Image.Converter.LayoutByName(aLayoutName); if (vLayout == null) return false; editor.Image.Converter.Loads(aEntity); vLayout.AddEntity(aEntity); return true; } private void DrawDoriArea(DPoint point) { CADBlock block = new CADBlock(); block.Name = "blockDoriArea"; block.AddEntity(DrawCamera(point)); block.AddEntity(DrawLens(point)); block.AddEntity(DrawIdentificationArea(point)); block.AddEntity(DrawRecognitionArea(point)); block.AddEntity(DrawObservationArea(point)); block.AddEntity(DrawDetectionArea(point)); block.AddEntity(DrawArc(point)); CADInsert insert = new CADInsert(); insert.Block = block; if (!PlaceEntity(insert)) editor.Image.Converter.GetSection(ConvSection.Blocks).RemoveEntityByName("blockDoriArea"); }
答:元素(给定案例中的CADPolylines)实际存储在CADBlock中,而不是CADInsert中。CADInsert只是通过CADInsert.Block属性引用CADBlock。
上述代码中存在两个问题:
private void AddEntToSection(ConvSection aSection, CADEntity aEntity) { editor.Image.Converter.Loads(aEntity); editor.Image.Converter.GetSection(aSection).AddEntity(aEntity); } ...<strong> CADBlock block = new CADBlock(); block.Name = "blockDoriArea"; AddEntToSection(ConvSection.Blocks, block);
insert.Point = new DPoint(0, 0, 0);
PS:你可以使用任何(X,Y,Z)值,具体取决于你要放置CADInsert对象的位置。(0,0,0)只是举的一个例子。
问:从v11升级到v12后,我使用Selector.MultipleSelect时出现了另一个问题。在v12中,Selector类总是返回一个空集合。你可以调查一下是否可以按预期工作吗?
答:在v12中,CADSelector.MultipleSelect()方法的行为取决于CADSelector.UseShiftToAddSelected属性值,该值确定了一种可用的选择模式:
CADSelector.UseShiftToAddSelected = False(默认情况下) - 允许每个选定的对象(对象组)被添加到当前选择集而不丢弃先前的选择。你必须按住Shift键并使用鼠标左键放弃先前的选择。
CADSelector.UseShiftToAddSelected = True - 在选择一个或多个项目后尝试在图形中选择更多对象时,先前选择的对象将变为未选中状态。你必须按住Shift键并使用鼠标左键才能将新对象添加到选择集。
上述选择模式的工作方式与使用Shift添加到 AutoCAD中的选择选项的方式相同:
CADSelector.MultipleSelect()方法的第二个参数实际上采用Shift键状态(按下并保持或未按下)。当CADSelector.UseShiftToAddSelected = False并且此参数设置为True(模拟按住Shift键时的情况)时,你只能放弃先前的选择。这是符合预期的行为。
问:在演示之后实现了CAD Viewer。打开所有类型的图像并应用缩放。但是有两个问题:当我打开图像dwg或dxf时,没有颜色,我无法解释被奇怪符号替换的字母。我忘记了什么?截图如下:
代码如下:
public void LoadFile(string fileName) { _fileName = fileName; if (fileName != null) { if (cadImage != null) { cadImage.Dispose(); cadImage = null; //this.lForm.LayerList.Clear(); } ImageScale = 1.0f; this.cadImage = CADImage.CreateImageByExtension(fileName); CADImport.CADConst.DefaultSHXParameters.UseSHXFonts = this.useSHXFonts; if (this.useSHXFonts) DoSHXFonts(); else DoTTFFonts(); this.cadImage.ChangeGraphicsMode(graphicsMode, renderMode); this.cadImage.GraphicsOutMode = graphicsMode; this.cadImage.ChangeDrawMode(graphicsMode, cadPictBox); this.cadImage.ChangeGraphicsMode(graphicsMode, renderMode); if (this.cadImage is CADRasterImage) (this.cadImage as CADRasterImage).Control = this.cadPictBox; } if (this.cadImage != null) { CADImage.CodePage = System.Text.Encoding.Default.CodePage;//note - charset was set here CADImage.LastLoadedFilePath = Path.GetDirectoryName(fileName); CreateNewLoadThread(fileName); } }
private void LoadCADImage(object fileNameObj) { lock (cadImage) { string fileName = (string)fileNameObj; if (CADConst.IsWebPath(fileName)) this.cadImage.LoadFromWeb(fileName); else cadImage.LoadFromFile(fileName); } SetCADImageOptions(); }
public void SetCADImageOptions() { cadImage.IsShowLineWeight = this.showLineWeight; cadImage.IsWithoutMargins = true; cadImage.UseDoubleBuffering = this.useDoubleBuffering; cadImage.TTFSmoothing = TTFSmoothing.None; this.useSelectEntity = false; if (cadPictBox.BackColor == Color.White) White_Click(); else Black_Click(); if (this.DrawMode == false) this.DoBlackColor(); ObjEntity.cadImage = cadImage; ObjEntity.propGrid = this.propGrid; DoResize(true, true); this.cadPictBox.Invalidate(); }
答:我注意到您的代码包含DoBlackColor()调用,在ViewerDemo项目中,给定的方法呈现黑白CAD图像。要确定当前使用的渲染模式,您应该检查CADImage.DrawMode属性值,该值可能如下所示:
public enum CADDrawMode { // All colors are shown. Normal = 0, // CAD image is shown in black and white. Black = 1, // CAD image is shown in grayscale. Gray = 2, }
错误字符的问题可能与使用不正确的字体有关。请检查图形文件需要哪些SHX和TTF字体(例如,在AutoCAD中)。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn