Skip to content

Commit 6c57dfe

Browse files
Merge pull request #60 from aspose-font/aspose_font_net_release_25_12
API-References for Aspose.Font for .NET release 25.12
2 parents d4c271e + d2779c2 commit 6c57dfe

12 files changed

Lines changed: 149 additions & 11 deletions

File tree

english/net/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ is_root: true
3030
| [Aspose.Font.TtfHelpers](./aspose.font.ttfhelpers/) | The **Aspose.Font.TtfHelpers** namespace provides classes and interfaces for work with expanded functionality on TTF font objects |
3131
| [Aspose.Font.TtfTables](./aspose.font.ttftables/) | The **Aspose.Font.TtfTables** namespace provides classes for work with different tables of TrueType format. |
3232
| [Aspose.Font.Type1](./aspose.font.type1/) | The **Aspose.Font.Type1** namespace provides classes describing objects related to Type1 Font format. |
33+
| [Aspose.Font.Utils](./aspose.font.utils/) | Documentation placeholder for the `Aspose.Font.Utils` namespace. |
3334
| [Aspose.Font.WoffExceptions](./aspose.font.woffexceptions/) | The **Aspose.Font.WoffExceptions** namespace provides exceptions classes related to WOFF Font format. |
3435

3536

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Aspose.Font.Utils
3+
second_title: Aspose.Font for .NET API Reference
4+
description: Documentation placeholder for the Aspose.Font.Utils namespace
5+
type: docs
6+
weight: 200
7+
url: /net/aspose.font.utils/
8+
---
9+
Documentation placeholder for the `Aspose.Font.Utils` namespace.
10+
11+
## Classes
12+
13+
| Class | Description |
14+
| --- | --- |
15+
| [CompressionUtils](./compressionutils/) | Provides utility methods for compression and decompression. |
16+
17+
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
title: Class CompressionUtils
3+
second_title: Aspose.Font for .NET API Reference
4+
description: Aspose.Font.Utils.CompressionUtils class. Provides utility methods for compression and decompression
5+
type: docs
6+
weight: 1490
7+
url: /net/aspose.font.utils/compressionutils/
8+
---
9+
## CompressionUtils class
10+
11+
Provides utility methods for compression and decompression.
12+
13+
```csharp
14+
public class CompressionUtils
15+
```
16+
17+
## Constructors
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [CompressionUtils](compressionutils/)() | The default constructor. |
22+
23+
## Methods
24+
25+
| Name | Description |
26+
| --- | --- |
27+
| static [DecodeByBrotli](../../aspose.font.utils/compressionutils/decodebybrotli/)(byte[]) | Decompresses the given Brotli-compressed byte array. |
28+
| static [EncodeByBrotli](../../aspose.font.utils/compressionutils/encodebybrotli/)(byte[]) | Compresses the given byte array using the Brotli algorithm. |
29+
30+
### See Also
31+
32+
* namespace [Aspose.Font.Utils](../../aspose.font.utils/)
33+
* assembly [Aspose.Font](../../)
34+
35+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: CompressionUtils.CompressionUtils
3+
second_title: Aspose.Font for .NET API Reference
4+
description: CompressionUtils constructor. The default constructor
5+
type: docs
6+
weight: 10
7+
url: /net/aspose.font.utils/compressionutils/compressionutils/
8+
---
9+
## CompressionUtils constructor
10+
11+
The default constructor.
12+
13+
```csharp
14+
public CompressionUtils()
15+
```
16+
17+
### See Also
18+
19+
* class [CompressionUtils](../)
20+
* namespace [Aspose.Font.Utils](../../../aspose.font.utils/)
21+
* assembly [Aspose.Font](../../../)
22+
23+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: CompressionUtils.DecodeByBrotli
3+
second_title: Aspose.Font for .NET API Reference
4+
description: CompressionUtils method. Decompresses the given Brotlicompressed byte array
5+
type: docs
6+
weight: 20
7+
url: /net/aspose.font.utils/compressionutils/decodebybrotli/
8+
---
9+
## CompressionUtils.DecodeByBrotli method
10+
11+
Decompresses the given Brotli-compressed byte array.
12+
13+
```csharp
14+
public static byte[] DecodeByBrotli(byte[] input)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| input | Byte[] | The compressed data. |
20+
21+
### Return Value
22+
23+
The decompressed byte array.
24+
25+
### See Also
26+
27+
* class [CompressionUtils](../)
28+
* namespace [Aspose.Font.Utils](../../../aspose.font.utils/)
29+
* assembly [Aspose.Font](../../../)
30+
31+
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: CompressionUtils.EncodeByBrotli
3+
second_title: Aspose.Font for .NET API Reference
4+
description: CompressionUtils method. Compresses the given byte array using the Brotli algorithm
5+
type: docs
6+
weight: 30
7+
url: /net/aspose.font.utils/compressionutils/encodebybrotli/
8+
---
9+
## CompressionUtils.EncodeByBrotli method
10+
11+
Compresses the given byte array using the Brotli algorithm.
12+
13+
```csharp
14+
public static byte[] EncodeByBrotli(byte[] buff)
15+
```
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| buff | Byte[] | The input buffer to compress. |
20+
21+
### Return Value
22+
23+
The compressed byte array.
24+
25+
### See Also
26+
27+
* class [CompressionUtils](../)
28+
* namespace [Aspose.Font.Utils](../../../aspose.font.utils/)
29+
* assembly [Aspose.Font](../../../)
30+
31+

english/net/aspose.font.woffexceptions/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Aspose.Font.WoffExceptions
33
second_title: Aspose.Font for .NET API Reference
44
description: The Aspose.Font.WoffExceptions namespace provides exceptions classes related to WOFF Font format
55
type: docs
6-
weight: 200
6+
weight: 210
77
url: /net/aspose.font.woffexceptions/
88
---
99
The **Aspose.Font.WoffExceptions** namespace provides exceptions classes related to WOFF Font format.

english/net/aspose.font.woffexceptions/woffformatexception/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Class WoffFormatException
33
second_title: Aspose.Font for .NET API Reference
44
description: Aspose.Font.WoffExceptions.WoffFormatException class. Represents WOFF font processing related exception
55
type: docs
6-
weight: 1490
6+
weight: 1500
77
url: /net/aspose.font.woffexceptions/woffformatexception/
88
---
99
## WoffFormatException class

english/net/aspose.font/ifont/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public interface IFont
2020
| --- | --- |
2121
| [Encoding](../../aspose.font/ifont/encoding/) { get; } | Gets Font encoding. |
2222
| [FontDefinition](../../aspose.font/ifont/fontdefinition/) { get; } | Gets Font definition. |
23-
| [FontFamily](../../aspose.font/ifont/fontfamily/) { getset; } | Gets or Sets Font family. |
24-
| [FontName](../../aspose.font/ifont/fontname/) { getset; } | Gets or Sets Font face name. |
23+
| [FontFamily](../../aspose.font/ifont/fontfamily/) { getset; } | Gets or sets Font family. |
24+
| [FontName](../../aspose.font/ifont/fontname/) { getset; } | Gets or sets Font face name. |
2525
| [FontNames](../../aspose.font/ifont/fontnames/) { get; } | Gets Font names. |
2626
| [FontSaver](../../aspose.font/ifont/fontsaver/) { get; } | Gets Font save functionality. |
2727
| [FontStyle](../../aspose.font/ifont/fontstyle/) { get; } | Gets Font style. This is a value computed and represented in generalized type. |
@@ -30,7 +30,7 @@ public interface IFont
3030
| [Metrics](../../aspose.font/ifont/metrics/) { get; } | Gets Font metrics. |
3131
| [NumGlyphs](../../aspose.font/ifont/numglyphs/) { get; } | Gets number of glyphs in the Font. |
3232
| [PostscriptNames](../../aspose.font/ifont/postscriptnames/) { get; } | Gets postscript Font names. |
33-
| [Style](../../aspose.font/ifont/style/) { getset; } | Gets or Sets Font style. This is a raw string value provided by Font file. |
33+
| [Style](../../aspose.font/ifont/style/) { getset; } | Gets or sets Font style. This is a raw string value provided by Font file. |
3434

3535
## Methods
3636

english/net/aspose.font/ifont/fontfamily/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: IFont.FontFamily
33
second_title: Aspose.Font for .NET API Reference
4-
description: IFont property. Gets or Sets Font family
4+
description: IFont property. Gets or sets Font family
55
type: docs
66
weight: 30
77
url: /net/aspose.font/ifont/fontfamily/
88
---
99
## IFont.FontFamily property
1010

11-
Gets or Sets Font family.
11+
Gets or sets Font family.
1212

1313
```csharp
1414
public string FontFamily { get; set; }

0 commit comments

Comments
 (0)