Skip to content

Commit 356d4c3

Browse files
* Prepared the Aspose.HTML for .NET 25.8 release
1 parent eda93c8 commit 356d4c3

File tree

365 files changed

+606
-408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

365 files changed

+606
-408
lines changed

english/net/aspose.html.dom.svg.saving/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ url: /net/aspose.html.dom.svg.saving/
1313
| Class | Description |
1414
| --- | --- |
1515
| [SVGSaveOptions](./svgsaveoptions/) | Represents SVG save options. |
16+
| [SVGZSaveOptions](./svgzsaveoptions/) | Represents SVGZ save options. |
1617
## Enumeration
1718

1819
| Enumeration | Description |

english/net/aspose.html.dom.svg.saving/svgsaveformat/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public enum SVGSaveFormat
1919
| Name | Value | Description |
2020
| --- | --- | --- |
2121
| SVG | `0` | Document will be saved as SVG. |
22+
| SVGZ | `1` | Document will be saved as SVGZ. |
2223

2324
### See Also
2425

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: SVGZSaveOptions Class
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: Aspose.Html.Dom.Svg.Saving.SVGZSaveOptions class. Represents SVGZ save options
5+
type: docs
6+
weight: 2620
7+
url: /net/aspose.html.dom.svg.saving/svgzsaveoptions/
8+
---
9+
## SVGZSaveOptions class
10+
11+
Represents SVGZ save options.
12+
13+
```csharp
14+
public class SVGZSaveOptions : SaveOptions
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [SVGZSaveOptions](svgzsaveoptions/)() | The default constructor. |
22+
23+
## Properties
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| [ResourceHandlingOptions](../../aspose.html.saving/saveoptions/resourcehandlingoptions/) { get; } | Gets a [`ResourceHandlingOptions`](../../aspose.html.saving/resourcehandlingoptions/) object which is used for configuration of resources handling. |
28+
| [VectorizeText](../../aspose.html.dom.svg.saving/svgzsaveoptions/vectorizetext/) { getset; } | Gets or sets whether text elements are replaced with paths. |
29+
30+
### See Also
31+
32+
* class [SaveOptions](../../aspose.html.saving/saveoptions/)
33+
* namespace [Aspose.Html.Dom.Svg.Saving](../../aspose.html.dom.svg.saving/)
34+
* assembly [Aspose.HTML](../../)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: SVGZSaveOptions
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: SVGZSaveOptions constructor. The default constructor
5+
type: docs
6+
weight: 10
7+
url: /net/aspose.html.dom.svg.saving/svgzsaveoptions/svgzsaveoptions/
8+
---
9+
## SVGZSaveOptions constructor
10+
11+
The default constructor.
12+
13+
```csharp
14+
public SVGZSaveOptions()
15+
```
16+
17+
### See Also
18+
19+
* class [SVGZSaveOptions](../)
20+
* namespace [Aspose.Html.Dom.Svg.Saving](../../../aspose.html.dom.svg.saving/)
21+
* assembly [Aspose.HTML](../../../)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: SVGZSaveOptions.VectorizeText
3+
second_title: Aspose.HTML for .NET API Reference
4+
description: SVGZSaveOptions VectorizeText property. Gets or sets whether text elements are replaced with paths
5+
type: docs
6+
weight: 20
7+
url: /net/aspose.html.dom.svg.saving/svgzsaveoptions/vectorizetext/
8+
---
9+
## SVGZSaveOptions.VectorizeText property
10+
11+
Gets or sets whether text elements are replaced with paths.
12+
13+
```csharp
14+
public bool VectorizeText { get; set; }
15+
```
16+
17+
### See Also
18+
19+
* class [SVGZSaveOptions](../)
20+
* namespace [Aspose.Html.Dom.Svg.Saving](../../../aspose.html.dom.svg.saving/)
21+
* assembly [Aspose.HTML](../../../)

english/net/aspose.html.dom.svg/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ All classes in **Aspose.Html.Dom.Svg** namespace are based on w3c SVG2 recommend
2323
| [SVGCursorElement](./svgcursorelement/) | The SVGCursorElement interface corresponds to the ‘cursor’ element. |
2424
| [SVGDefsElement](./svgdefselement/) | The SVGDefsElement interface corresponds to the ‘defs’ element. |
2525
| [SVGDescElement](./svgdescelement/) | The SVGDescElement interface corresponds to the ‘desc’ element. |
26-
| [SVGDocument](./svgdocument/) | An `SVGDocument` is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document. When an ‘svg’ element is embedded inline as a component of a document from another namespace, such as when an ‘svg’ element is embedded inline within an XHTML document [XHTML], then an SVGDocument object will not exist; instead, the root object in the document object hierarchy will be a Document object of a different type, such as an HTMLDocument object. However, an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an ‘svg’ element, such as when viewing a stand-alone SVG file(i.e., a file with MIME type "image/svg+xml"). In this case, the SVGDocument object will be the root object of the document object model hierarchy. |
26+
| [SVGDocument](./svgdocument/) | An `SVGDocument` is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document. In addition to loading standard .svg files, both the constructors and the [`Navigate`](../aspose.html.dom/document/navigate/) method can load gzip-compressed .svgz files. When an ‘svg’ element is embedded inline as a component of a document from another namespace, such as when an ‘svg’ element is embedded inline within an XHTML document [XHTML], then an SVGDocument object will not exist; instead, the root object in the document object hierarchy will be a Document object of a different type, such as an HTMLDocument object. However, an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an ‘svg’ element, such as when viewing a stand-alone SVG file(i.e., a file with MIME type "image/svg+xml"). In this case, the SVGDocument object will be the root object of the document object model hierarchy. |
2727
| [SVGElement](./svgelement/) | All of the SVG DOM interfaces that correspond directly to elements in the SVG language (such as the SVGPathElement interface for the ‘path’ element) derive from the SVGElement interface. |
2828
| [SVGElementInstance](./svgelementinstance/) | The root object of each use-element shadow tree implements the SVGUseElementShadowRoot interface. This interface does not currently define any extensions to the properties and methods defined for the ShadowRoot interface and DocumentOrShadowRoot mixin. However, the tree rooted at this node is entirely read-only from the perspective of author scripts. |
2929
| [SVGEllipseElement](./svgellipseelement/) | The SVGEllipseElement interface corresponds to the ‘ellipse’ element. |

english/net/aspose.html.dom.svg/svgdocument/_index.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: SVGDocument Class
33
second_title: Aspose.HTML for .NET API Reference
4-
description: Aspose.Html.Dom.Svg.SVGDocument class. An SVGDocument is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy it also provides some convenience methods for accessing certain sets of information from the document. When an svg element is embedded inline as a component of a document from another namespace such as when an svg element is embedded inline within an XHTML document XHTML then an SVGDocument object will not exist instead the root object in the document object hierarchy will be a Document object of a different type such as an HTMLDocument object. However an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an svg element such as when viewing a stand-alone SVG filei.e. a file with MIME type image/svgxml. In this case the SVGDocument object will be the root object of the document object model hierarchy
4+
description: Aspose.Html.Dom.Svg.SVGDocument class. An SVGDocument is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy it also provides some convenience methods for accessing certain sets of information from the document. In addition to loading standard .svg files both the constructors and the Navigate method can load gzip-compressed .svgz files. When an svg element is embedded inline as a component of a document from another namespace such as when an svg element is embedded inline within an XHTML document XHTML then an SVGDocument object will not exist instead the root object in the document object hierarchy will be a Document object of a different type such as an HTMLDocument object. However an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an svg element such as when viewing a stand-alone SVG filei.e. a file with MIME type image/svgxml. In this case the SVGDocument object will be the root object of the document object model hierarchy
55
type: docs
66
weight: 2180
77
url: /net/aspose.html.dom.svg/svgdocument/
88
---
99
## SVGDocument class
1010

11-
An `SVGDocument` is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document. When an ‘svg’ element is embedded inline as a component of a document from another namespace, such as when an ‘svg’ element is embedded inline within an XHTML document [XHTML], then an SVGDocument object will not exist; instead, the root object in the document object hierarchy will be a Document object of a different type, such as an HTMLDocument object. However, an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an ‘svg’ element, such as when viewing a stand-alone SVG file(i.e., a file with MIME type "image/svg+xml"). In this case, the SVGDocument object will be the root object of the document object model hierarchy.
11+
An `SVGDocument` is the root of the SVG hierarchy and holds the entire content. Besides providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document. In addition to loading standard .svg files, both the constructors and the [`Navigate`](../../aspose.html.dom/document/navigate/) method can load gzip-compressed .svgz files. When an ‘svg’ element is embedded inline as a component of a document from another namespace, such as when an ‘svg’ element is embedded inline within an XHTML document [XHTML], then an SVGDocument object will not exist; instead, the root object in the document object hierarchy will be a Document object of a different type, such as an HTMLDocument object. However, an SVGDocument object will indeed exist when the root element of the XML document hierarchy is an ‘svg’ element, such as when viewing a stand-alone SVG file(i.e., a file with MIME type "image/svg+xml"). In this case, the SVGDocument object will be the root object of the document object model hierarchy.
1212

1313
```csharp
1414
public class SVGDocument : Document, IDocumentCSS
@@ -155,14 +155,17 @@ public class SVGDocument : Document, IDocumentCSS
155155
| override [RenderTo](../../aspose.html.dom.svg/svgdocument/renderto/)(*[IDevice](../../aspose.html.rendering/idevice/)*) | This method is used to print the contents of the current document to the specified device. |
156156
| [ReplaceChild](../../aspose.html.dom/node/replacechild/)(*[Node](../../aspose.html.dom/node/), [Node](../../aspose.html.dom/node/)*) | Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node. If newChild is a DocumentFragment object, oldChild is replaced by all of the DocumentFragment children, which are inserted in the same order. If the newChild is already in the tree, it is first removed. |
157157
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save)(*[ResourceHandler](../../aspose.html.saving.resourcehandlers/resourcehandler/)*) | Saves the document content and resources using the [`ResourceHandler`](../../aspose.html.saving.resourcehandlers/resourcehandler/). |
158-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_6)(*string*) | Saves the document to local file specified by `path`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
159-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_3)(*[Url](../../aspose.html/url/)*) | Saves the document to local file specified by `url`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
158+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_8)(*string*) | Saves the document to local file specified by `path`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". If the specified `url` ends with ".svgz", the document will be saved as a compressed SVGZ file. |
159+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_4)(*[Url](../../aspose.html/url/)*) | Saves the document to local file specified by `url`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". If the specified `url` ends with ".svgz", the document will be saved as a compressed SVGZ file. |
160160
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_1)(*[ResourceHandler](../../aspose.html.saving.resourcehandlers/resourcehandler/), [SVGSaveFormat](../../aspose.html.dom.svg.saving/svgsaveformat/)*) | Saves the document content and resources using the [`ResourceHandler`](../../aspose.html.saving.resourcehandlers/resourcehandler/). |
161161
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_2)(*[ResourceHandler](../../aspose.html.saving.resourcehandlers/resourcehandler/), [SVGSaveOptions](../../aspose.html.dom.svg.saving/svgsaveoptions/)*) | Saves the document content and resources using the [`ResourceHandler`](../../aspose.html.saving.resourcehandlers/resourcehandler/). |
162-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_7)(*string, [SVGSaveFormat](../../aspose.html.dom.svg.saving/svgsaveformat/)*) | Saves the document to local file specified by `path`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
163-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_8)(*string, [SVGSaveOptions](../../aspose.html.dom.svg.saving/svgsaveoptions/)*) | Saves the document to local file specified by `path`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
164-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_4)(*[Url](../../aspose.html/url/), [SVGSaveFormat](../../aspose.html.dom.svg.saving/svgsaveformat/)*) | Saves the document to local file specified by `url`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
165-
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_5)(*[Url](../../aspose.html/url/), [SVGSaveOptions](../../aspose.html.dom.svg.saving/svgsaveoptions/)*) | Saves the document to local file specified by `url`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
162+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_3)(*[ResourceHandler](../../aspose.html.saving.resourcehandlers/resourcehandler/), [SVGZSaveOptions](../../aspose.html.dom.svg.saving/svgzsaveoptions/)*) | Saves the document content and associated resources using the specified [`ResourceHandler`](../../aspose.html.saving.resourcehandlers/resourcehandler/). |
163+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_9)(*string, [SVGSaveFormat](../../aspose.html.dom.svg.saving/svgsaveformat/)*) | Saves the document to local file specified by `path`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
164+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_10)(*string, [SVGSaveOptions](../../aspose.html.dom.svg.saving/svgsaveoptions/)*) | Saves the document as an `.svg` file to the local path specified by *path*. Any external resources are written to a sibling folder named `{output_file_name}_files`. |
165+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_11)(*string, [SVGZSaveOptions](../../aspose.html.dom.svg.saving/svgzsaveoptions/)*) | Saves the document as a compressed `.svgz` file to the local path specified by *path*. Any external resources are written to a sibling folder named `{output_file_name}_files`. |
166+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_5)(*[Url](../../aspose.html/url/), [SVGSaveFormat](../../aspose.html.dom.svg.saving/svgsaveformat/)*) | Saves the document to local file specified by `url`. All resources used in this document will be saved in to adjacent folder, whose name will be constructed as: output_file_name + "_files". |
167+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_6)(*[Url](../../aspose.html/url/), [SVGSaveOptions](../../aspose.html.dom.svg.saving/svgsaveoptions/)*) | Saves the document as an `.svg` file to *url*. All external resources are placed in a sibling folder named `{output_file_name}_files`. |
168+
| [Save](../../aspose.html.dom.svg/svgdocument/save/#save_7)(*[Url](../../aspose.html/url/), [SVGZSaveOptions](../../aspose.html.dom.svg.saving/svgzsaveoptions/)*) | Saves the document as a compressed `.svgz` file to *url*. All external resources are placed in a sibling folder named `{output_file_name}_files`. |
166169
| override [ToString](../../aspose.html.dom/node/tostring/)() | Returns a String that represents this instance. |
167170
| [Write](../../aspose.html.dom/document/write/)(*params string[]*) | Write a string of text to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document. |
168171
| [WriteLn](../../aspose.html.dom/document/writeln/)(*params string[]*) | Write a string of text followed by a newline character to a document stream opened by open(). Note that the function will produce a document which is not necessarily driven by a DTD and therefore might be produce an invalid result in the context of the document |

0 commit comments

Comments
 (0)