Search found 1 match
- 07 Dec 2011, 14:37
- Forum: CAD .NET
- Topic: Dwg to image without displaying
- Replies: 1
- Views: 12293
Dwg to image without displaying
Hi, I am trying to batch convert .dwg CAD images to PNG images in a ASP.NET WebService without displaying the images at all. Tried something like that: CADImage image = CADImage.CreateImageByExtension(inputFilePath); MemoryStream ms = new MemoryStream(); image.SaveToStream(ms, ImageFormat.Png, new D...