浏览我们的产品

Aspose.Diagram for .NET 21.12 发行说明

改进和变化

钥匙概括类别
DIAGRAMNET-52408我们使用 EmfRederSetting EmfPlusPrefer 时的问题强化
DIAGRAMNET-52438SaveForegroundPagesOnly 用于打印强化
DIAGRAMNET-52450Visio to SVG - Saving raster image separately强化
DIAGRAMNET-51171Partial rendering of the shapes on saving drawing in PDF format漏洞
DIAGRAMNET-51390嵌入对象未正确替换漏洞
DIAGRAMNET-51800Visio to SVG - Background Image Missing (PowerPoint is added in the VISIO)漏洞
DIAGRAMNET-52423Page.Copy() 不复制 diagram 中的 Excel 对象漏洞
DIAGRAMNET-52443打开和保存时缺少形状 MS Visio Diagram漏洞
DIAGRAMNET-52444Visio 到 JPG - API 生成的不同结果漏洞
DIAGRAMNET-52445在 Linux 和 Windows 环境上转换示例有不同的结果漏洞

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

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

在 SVGSaveOptions 中添加 IsSavingImageSeparately

  • 定义是否单独保存图像。
    SVGSaveOptions o = new SVGSaveOptions();
    o.IsSavingImageSeparately = true;

在 SVGSaveOptions 中添加 CustomImagePath

  • 保存在为图像生成的 svg 文件中的用户自定义路径 (URL)。如果用户未定义,将使用当前目录。
  o.CustomImagePath = "d:/output/";

在 PrintSaveOptions 中添加 SaveForegroundPagesOnly

  • 指定是打印所有页面还是只打印前景。
 PrintSaveOptions options = new PrintSaveOptions();
 options.SaveForegroundPagesOnly = true;


 
 简体中文