Browse our Products

Aspose.CAD for .NET 20.11 - Release Notes

KeySummaryCategory
CADNET-1121Export to OBJ file format supportFeature
CADNET-1100HoloLens 2 support in Aspose.CADFeature
CADNET-989Support for PC3 filesFeature
CADNET-1222Implement writer methods for DWG DataSectionReaderEnhancement
CADNET-1285Text alingment issue for CadEntityTypeName.ATTRIBEnhancement
CADNET-1284Blank PDF is generated using Aspsoe.CADEnhancement
CADNET-1282Raster Image not printed when having rotationEnhancement
CADNET-1238Shifted drawing when converting to PNG in LinuxEnhancement
CADNET-1230Exception when loading STLEnhancement
CADNET-1223Image loading failed exception when opening IFCEnhancement
CADNET-1208Changes made in DXF are not visible in saved fileEnhancement
CADNET-1207DWG to PDF has rendering issuesEnhancement
CADNET-1190Could not load file. File is corrupted or damaged when rendering DWF fileEnhancement
CADNET-1150System.StackOverflowException while converting DWG to PDFEnhancement
CADNET-1096Freezes on format detectionEnhancement
CADNET-1283Scale image as per ratio of actual DXF images dimensionInternal

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);
}