Aspose.CAD for .NET 20.11 - Release Notes
Contents
[
Hide
]
This page contains release notes for Aspose.CAD for .NET 20.11
Key | Summary | Category |
---|---|---|
CADNET-1121 | Export to OBJ file format support | Feature |
CADNET-1100 | HoloLens 2 support in Aspose.CAD | Feature |
CADNET-989 | Support for PC3 files | Feature |
CADNET-1222 | Implement writer methods for DWG DataSectionReader | Enhancement |
CADNET-1285 | Text alingment issue for CadEntityTypeName.ATTRIB | Enhancement |
CADNET-1284 | Blank PDF is generated using Aspsoe.CAD | Enhancement |
CADNET-1282 | Raster Image not printed when having rotation | Enhancement |
CADNET-1238 | Shifted drawing when converting to PNG in Linux | Enhancement |
CADNET-1230 | Exception when loading STL | Enhancement |
CADNET-1223 | Image loading failed exception when opening IFC | Enhancement |
CADNET-1208 | Changes made in DXF are not visible in saved file | Enhancement |
CADNET-1207 | DWG to PDF has rendering issues | Enhancement |
CADNET-1190 | Could not load file. File is corrupted or damaged when rendering DWF file | Enhancement |
CADNET-1150 | System.StackOverflowException while converting DWG to PDF | Enhancement |
CADNET-1096 | Freezes on format detection | Enhancement |
CADNET-1283 | Scale image as per ratio of actual DXF images dimension | Internal |
Usage examples:
CADNET-989 - Support for PC3 files
using (Image image = Image.Load(inStream))
using (FileStream stream = new FileStream(outFile, FileMode.Create))
{
ImageOptionsBase options = new PdfOptions();
options.VectorRasterizationOptions = new CadRasterizationOptions();
options.Pc3File = filePc3;
image.Save(stream, options);
}