Aspose.CAD for Java 20.11 - Release Notes
Contents
[
Hide
]
This page contains release notes for Aspose.CAD for Java 20.11
Key | Summary | Category |
---|---|---|
CADJAVA-917 | Support for PC3 files | Feature |
CADJAVA-915 | HoloLens 2 support in Aspose.CAD | Feature |
CADJAVA-914 | Export to OBJ file format support | Feature |
CADJAVA-908 | Implement writer methods for DWG DataSectionReader | Enhancement |
CADJAVA-858 | Export to DXF from APS | Enhancement |
CADJAVA-916 | Freezes on format detection | Enhancement |
CADJAVA-913 | System.StackOverflowException while converting DWG to PDF | Enhancement |
CADJAVA-911 | Could not load file. File is corrupted or damaged when rendering DWF file | Enhancement |
CADJAVA-910 | DWG to PDF has rendering issues | Enhancement |
CADJAVA-909 | Changes made in DXF are not visible in saved file | Enhancement |
CADJAVA-907 | Image loading failed exception when opening IFC | Enhancement |
CADJAVA-906 | Exception when loading STL | Enhancement |
CADJAVA-905 | Shifted drawing when converting to PNG in Linux | Enhancement |
CADJAVA-879 | Raster Image not printed when having rotation | Enhancement |
CADJAVA-863 | Blank PDF is generated using Aspsoe.CAD | Enhancement |
CADJAVA-861 | Text alingment issue for CadEntityTypeName.ATTRIB | Enhancement |
CADJAVA-878 | Scale image as per ratio of actual DXF images dimension | Internal |
Usage examples:-
CADJAVA917 - 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);
}