Aspose.SVG for .NET 20.9 Release Notes
This page contains release notes information for Aspose.SVG for .NET 20.9.
Major Features
As per the regular monthly update process of all APIs being offered by Aspose, we are honored to announce the September release of Aspose.SVG for .NET. In this release, we have added a new feature for “vectorization” of text elements inside SVG documents. By the term “vectorization” we mean converting text into a set of graphic elements such as PATH, G, USE, RECT. “Vectorization” is applied to a document in saving it with option VectorizeText = true. There are several reasons for using this feature. One of them is protecting intellectual property from grabbing of document text and the other one is substitution of fonts that can not be shared.
Public API changes
Added APIs
A new option VectorizeText was added to the class SVGSaveOptions:
1namespace Aspose.Svg.Saving
2{
3 /// <summary>
4 /// Represents SVG save options.
5 /// </summary>
6 public class SVGSaveOptions : SaveOptions
7 {
8 /// <summary>
9 /// Gets or sets whether text elements are replaced with paths.
10 /// </summary>
11 public bool VectorizeText { get; set; }
12 }
13}
Changed APIs
No Changes
Removed APIs
No Changes