Agregar propiedades personalizadas
Contents
[
Hide
]Este método funciona tanto para archivos DXF como DWG.
Agregar propiedades personalizadas
Aspose.CAD para la API de Java te permite agregar propiedades personalizadas en archivos DXF y DWG. Para esto, la API proporciona el CadImage.Header.CustomProperties.Add método. El siguiente fragmento de código demuestra cómo agregar propiedades personalizadas a un archivo DXF utilizando el CadImage.Header.CustomProperties.Add método.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cad/Aspose.CAD-for-Java | |
String dataDir = Utils.getDataDir(ExportDXFToWMF.class) + "DXFDrawings/"; | |
String srcFile = dataDir + "conic_pyramid.dxf"; | |
String outFile = dataDir + "AddCustomProperties_out.dxf"; | |
CadImage cadImage = (CadImage)Image.load(srcFile); | |
cadImage.getHeader().getCustomProperties().put("CUSTOM_PROPERTY_1", "Custom property test 1"); | |
cadImage.getHeader().getCustomProperties().put("CUSTOM_PROPERTY_2", "Custom property test 2"); | |
cadImage.getHeader().getCustomProperties().put("CUSTOM_PROPERTY_3", "Custom property test 3"); | |
cadImage.save(outFile); |