浏览我们的产品

Aspose.Diagram for .NET 19.8 发行说明

改进和变化

钥匙概括类别
DIAGRAMNET-50334添加对 VBA 代码/宏的支持(添加 - 编辑 - 删除)强化
DIAGRAMNET-51083添加绘制样条曲线的支持强化
DIAGRAMNET-51676Visio to HTML - output contains filename in it强化
DIAGRAMNET-50263无法将连接器文本位置设置为公式漏洞
DIAGRAMNET-50284VTX to HTML conversion, shapes fill color is not preserved漏洞
DIAGRAMNET-50432VDX to PDF conversion, Diagram.setFontDirs method use only first font over the whole diagram漏洞
DIAGRAMNET-50463VSDX to PDF conversion, missing or incomplete shapes rendering漏洞
DIAGRAMNET-51033The network shapes are not being preserved on converting a VSDX to PDF漏洞
DIAGRAMNET-51303VSDX to PDF - the color of text on connecting lines is changed漏洞
DIAGRAMNET-51663将 VSD 转换为 VSDX 时出现未处理的异常漏洞
DIAGRAMNET-51664删除未使用的主题后文件已损坏漏洞
DIAGRAMNET-51665删除未使用的主题后图像显示为 X漏洞
DIAGRAMNET-51667删除样式时只有图像有问题漏洞
DIAGRAMNET-51668VISIO 到 JPG - 输出图像格式不正确漏洞
DIAGRAMNET-51671删除未使用的主形状和样式时,只有图像有问题漏洞
DIAGRAMNET-51672加载和保存时丢失的图片漏洞
DIAGRAMNET-51677Visio to HTML - Link in generated HTML does not work漏洞
DIAGRAMNET-51678Visio to HTML - Date Format incorrect when saving as HTML漏洞
DIAGRAMNET-51679Visio to PDF - Several formatting errors in PDF漏洞

公共 API 和向后不兼容的更改

以下是对公众 API 所做的任何更改的列表,例如添加、重命名、删除或弃用成员,以及对 Aspose.Diagram for .NET 所做的任何非向后兼容更改。如果您对列出的任何更改有疑虑,请在这Aspose.Diagram 支持论坛.

在页面中添加 DrawSpline

以下代码片段显示了如何绘制样条曲线:

 PointF[]ps = new PointF[]{ new PointF(0, 0.3270758925347308f), 

                             new PointF(0.2926845121364643f, 0.3581517392187368f), 

                             new PointF(0.6526026522346893f, 0.4640748257705201f), 

                             new PointF(1f, 0.327075892534732f) };

                             diagram.Pages[0].DrawSpline(1, 1, 2, 2, ps);

在 HTMLSaveOptions 中添加 SaveTitle

以下代码片段定义了您是否要保存标题:

 Aspose.Diagram.Saving.HTMLSaveOptions options = new Aspose.Diagram.Saving.HTMLSaveOptions();

options.SaveTitle = false;


 
 简体中文