Explore nuestros productos

Aspose.Diagram for Java 17.02.0 Notas de la versión

Mejoras y Cambios

LlaveResumenCategoría
DIAGRAMJAVA-50037VSD to PDF conversion, the background color shade of a group shape is getting changed.Insecto
DIAGRAMJAVA-50365A blank page is generated while converting a Visio page with equations to PNG.Insecto
DIAGRAMJAVA-50461Borders are missing while converting VSDX to PNG.Insecto
DIAGRAMJAVA-50462Symbol disappears while converting VSDX to PNG.Insecto
DIAGRAMJAVA-50463Symbol disappears while converting VSDX to SVG.Insecto
DIAGRAMJAVA-50465Color of the text is different while converting VSDX to PNG.Insecto
DIAGRAMJAVA-50466The text position is incorrect when VSD is converted to SVG format.Insecto
DIAGRAMJAVA-50237 [VSDX to PDF]- Error message occurred when used LeagueGothic Regular font.Excepción

Public API y cambios incompatibles con versiones anteriores

Consulte la lista para conocer los cambios realizados al público API, como miembros agregados, renombrados, eliminados o obsoletos, así como cualquier cambio no compatible con versiones anteriores realizado en Aspose.Diagram for Java. Si tiene inquietudes sobre cualquier cambio enumerado, plantéelo en elAspose.Diagram foro de soporte.

Agrega el método Shape.getParentShape

El método Shape.getParentShape permite obtener la forma principal de una forma reciente.

 // Call a Diagram class constructor to load the Visio drawing

Diagram diagram = new Diagram("Drawing1.vsdx");

// get a sub-shape by page name, group shape ID, and then sub-shape ID

Shape shape = diagram.getPages().getPage("Page-3").getShapes().getShape(13).getShapes().getShape(2);

Shape parentShape = shape.getParentShape();

System.out.println("Parent Shape's Properties:");

System.out.println("Shape ID: " + parentShape.getID());

System.out.println("Shape Name: " + parentShape.getName());

System.out.println("Shape Type: " + parentShape.getType());

Agrega el método Shape.isInGroup

El método Shape.isInGroup permite detectar si la forma reciente es parte de alguna forma grupal.

 // Call a Diagram class constructor to load the Visio drawing

Diagram diagram = new Diagram("Drawing1.vsdx");

// get a sub-shape by page name, group shape ID, and then sub-shape ID

Shape shape = diagram.getPages().getPage("Page-3").getShapes().getShape(13).getShapes().getShape(2);

System.out.println("Is it in a Group: " + shape.isInGroup());

Agrega clase medida

Se agrega la clase Medida. Permite a los desarrolladores desbloquear las limitaciones de evaluación de Aspose.Diagram API, así como rastrear y mantener las licencias API. También monitorea el uso regular de Aspose.Diagram API.

 // Initialize a Metered license class object

Metered metered = new Metered();

// apply public and private keys

metered.setMeteredKey("your-public-key", "your-private-key");

Ejemplos de uso

Consulte la lista de temas de ayuda agregados en los documentos Wiki Aspose.Diagram:

  1. Establecer claves públicas y privadas para aplicar una licencia medida
  2. Recuperar la forma principal de una subforma
  3. Verifique si la forma Visio está en un grupo de formas


 
 Español