Browse our Products

Aspose.CAD for Java 20.11 - Release Notes

KeySummaryCategory
CADJAVA-917Support for PC3 filesFeature
CADJAVA-915HoloLens 2 support in Aspose.CADFeature
CADJAVA-914Export to OBJ file format supportFeature
CADJAVA-908Implement writer methods for DWG DataSectionReaderEnhancement
CADJAVA-858Export to DXF from APSEnhancement
CADJAVA-916Freezes on format detectionEnhancement
CADJAVA-913System.StackOverflowException while converting DWG to PDFEnhancement
CADJAVA-911Could not load file. File is corrupted or damaged when rendering DWF fileEnhancement
CADJAVA-910DWG to PDF has rendering issuesEnhancement
CADJAVA-909Changes made in DXF are not visible in saved fileEnhancement
CADJAVA-907Image loading failed exception when opening IFCEnhancement
CADJAVA-906Exception when loading STLEnhancement
CADJAVA-905Shifted drawing when converting to PNG in LinuxEnhancement
CADJAVA-879Raster Image not printed when having rotationEnhancement
CADJAVA-863Blank PDF is generated using Aspsoe.CADEnhancement
CADJAVA-861Text alingment issue for CadEntityTypeName.ATTRIBEnhancement
CADJAVA-878Scale image as per ratio of actual DXF images dimensionInternal

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