Blader door onze producten

Aspose.Diagram for .NET 17.8 Versionshinweise

Verbesserungen und Änderungen

TasteZusammenfassungKategorie
DIAGRAMNET-51295VSDX to SVG - the low quality of output SVG.Erweiterung
DIAGRAMNET-51298SVGSaveOptions - fügt Unterstützung hinzu, um den Grad der Bitmap-Komprimierung zu steuern.Erweiterung
DIAGRAMNET-51300Fügen Sie Unterstützung für verbindende Formen mit Verbindungsindex hinzu.Erweiterung
DIAGRAMNET-50577VSDX to PDF conversion, the circular shape’s text is misplaced - I.Insekt
DIAGRAMNET-50582VSDX to HTML conversion, the circular shape’s text is misplaced - I.Insekt
DIAGRAMNET-50601VSDX to PDF conversion, the circular shape’s text is misplaced - II.Insekt
DIAGRAMNET-50606VSDX to HTML conversion, the circular shape’s text is misplaced - II.Insekt
DIAGRAMNET-51197Warning triangle shapes are not rendered correctly in saving VSDM to SVG.Insekt
DIAGRAMNET-51245Displaced text items on converting a VSD to PDF.Insekt
DIAGRAMNET-51246Incorrect fonts applied to text when converting a VSD to PDF.Insekt
DIAGRAMNET-51296VSDM to SVG - the image is truncated.Insekt
DIAGRAMNET-51301VSDX to PDF - the color of text on connecting lines is changed.Insekt
DIAGRAMNET-51302VSDX to PDF - missing graphic elements.Insekt
DIAGRAMNET-51304VSDX to PDF - incomplete rendering of the flow chart.Insekt
DIAGRAMNET-51305VSDX to PDF - missing graphic elements.Insekt
DIAGRAMNET-51306VSDX to PDF - the color of text on connecting lines is changed.Insekt
DIAGRAMNET-51307VSDX to PDF - missing graphic elements.Insekt
DIAGRAMNET-51313Die Routine zum Öffnen und Speichern einer VSDX-Zeichnung generiert eine beschädigte Ausgabedatei.Insekt
DIAGRAMNET-51314VSDX to SVG - incorrect positioning of the text.Insekt
DIAGRAMNET-51317VSDX to PDF - the text of connecting lines is missing.Insekt
DIAGRAMNET-51318VSDX to PDF - the bold formatted text of rectangle shapes is missing.Insekt
DIAGRAMNET-51319VSDM to SVG - the arithmetic operation resulted in an overflow error.Insekt
DIAGRAMNET-51320Fehler im Formelement beim Laden von VSDM.Insekt
DIAGRAMNET-51323VSDM to SVG - all connecting lines are missing.Insekt
DIAGRAMNET-51324VSDM to SVG - incorrect border style and border color of various shapes.Insekt
DIAGRAMNET-51326Problem nach dem Hinzufügen von zwei Kommentaren zur Form.Insekt
DIAGRAMNET-51327Problem nach Verwendung der „AddComment“-Methode beim Hinzufügen von Kommentaren zu verschiedenen Shapes.Insekt
DIAGRAMNET-51328Aspose Diagram importiert die Form fälschlicherweise in das Dokument.Insekt
DIAGRAMNET-51330VSDM to SVG - an additional watermark text is added.Insekt
DIAGRAMNET-51332VSDM to SVG - incorrect rendering of an icon.Insekt
DIAGRAMNET-51334VSDM to SVG - displaced text at the top right corner.Insekt
DIAGRAMNET-51335VSDM to SVG - incorrect rendering of the background image.Insekt
DIAGRAMNET-51337VSD to HTML - invalid format of the input string error.Insekt

Öffentliche API und rückwärts inkompatible Änderungen

Im Folgenden finden Sie eine Liste aller Änderungen, die an der öffentlichen API vorgenommen wurden, z. B. hinzugefügte, umbenannte, entfernte oder veraltete Mitglieder, sowie alle nicht abwärtskompatiblen Änderungen, die an Aspose.Diagram for .NET vorgenommen wurden. Wenn Sie Bedenken zu einer der aufgeführten Änderungen haben, äußern Sie diese bitte dasAspose.Diagram Support-Forum.

Fügt ein Quality-Mitglied in der SVGSaveOptions-Klasse hinzu

Es erhält oder setzt einen Wert, der die Qualität der erzeugten Bilder bestimmt.

 string dataDir = @"c:\temp\";

// Load an existing drawing

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

// specify SVG export settings

SVGSaveOptions options = new SVGSaveOptions();

// set image quality

options.Quality = 100;

// save drawing in the SVG format

diagram.Save(dataDir + "UseSVGSaveOptions_out.svg", options);

Fügt die ConnectShapesViaConnectorIndex-Methode in der Page-Klasse hinzu

Es ermöglicht das Verbinden von Formen mithilfe von Verbindungsindizes.

 string dataDir = @"c:\temp\";

// Load an existing drawing

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

// get shapes by ID

Aspose.Diagram.Shape shape1 = diagram.Pages[0].Shapes.GetShape(1);

Aspose.Diagram.Shape shape2 = diagram.Pages[0].Shapes.GetShape(2);

// add connector shapes

Aspose.Diagram.Shape connector1 = new Aspose.Diagram.Shape();

long connecter1Id = diagram.AddShape(connector1, "Dynamic connector", 0);

// connect shapes by index of conneecting points

diagram.Pages[0].ConnectShapesViaConnectorIndex(shape1.ID, 6, shape2.ID, 3, connecter1Id);

// save drawing

diagram.Save(dataDir + "UseSVGSaveOptions_out.vsdx", SaveFileFormat.VSDX);

Anwendungsbeispiele

Bitte überprüfen Sie die Liste der Hilfethemen, die in den Aspose.Diagram-Wiki-Dokumenten hinzugefügt wurden:

  1. Verwenden Sie Verbindungsindizes, um Shapes zu verbinden
  2. Verwendung der SVG-Speicheroptionen


 
 Deutsch