Skip to content

Commit ff7201b

Browse files
Aspose.Slides for C++ 25.10 API Reference
1 parent 78adf4e commit ff7201b

File tree

8 files changed

+99
-3
lines changed

8 files changed

+99
-3
lines changed

content/python-net/english/aspose.slides.export/slideimageformat/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ The SlideImageFormat type exposes the following members:
2323

2424
| Method | Description |
2525
| :- | :- |
26-
| [`svg`](/slides/python-net/aspose.slides.export/slideimageformat/svg/#svgoptions) | Slides should converted to a SVG format. |
2726
| [`bitmap`](/slides/python-net/aspose.slides.export/slideimageformat/bitmap/#float-asposepydrawingimagingimageformat) | Slides should be converted to a raster image. |
27+
| [`bitmap`](/slides/python-net/aspose.slides.export/slideimageformat/bitmap/#float-imageformat) | Slides should be converted to a raster image. |
28+
| [`svg`](/slides/python-net/aspose.slides.export/slideimageformat/svg/#svgoptions) | Slides should converted to a SVG format. |
2829

2930

3031
### See Also

content/python-net/english/aspose.slides.export/slideimageformat/bitmap/_index.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,26 @@ def bitmap(scale, img_format):
2525
| img_format | **aspose.pydrawing.Imaging.ImageFormat** | Image format. |
2626

2727

28+
## bitmap {#float-imageformat}
29+
Slides should be converted to a raster image.
30+
31+
32+
```python
33+
@staticmethod
34+
def bitmap(scale, image_format):
35+
...
36+
```
37+
38+
39+
| Parameter | Type | Description |
40+
| :- | :- | :- |
41+
| scale | **float** | The factor by which to scale the output image. |
42+
| image_format | [`ImageFormat`](/slides/python-net/aspose.slides/imageformat) | The format of the resulting image (e.g., PNG, JPEG). |
43+
44+
2845

2946
### See Also
47+
* enumeration [`ImageFormat`](/slides/python-net/aspose.slides/imageformat)
3048
* class [`SlideImageFormat`](/slides/python-net/aspose.slides.export/slideimageformat)
3149
* module [`aspose.slides.export`](/slides/python-net/aspose.slides.export)
3250
* library [`Aspose.Slides`](/slides/python-net)

content/python-net/english/aspose.slides/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ Contains classes for work with Microsoft PowerPoint presentations without utiliz
457457
| [`FillType`](/slides/python-net/aspose.slides/filltype/) | Specifies the interior fill type of various visual objects. |
458458
| [`FontAlignment`](/slides/python-net/aspose.slides/fontalignment/) | Represents vertical font alignment. |
459459
| [`FontCollectionIndex`](/slides/python-net/aspose.slides/fontcollectionindex/) | Represents font's index in a collection. |
460+
| [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype/) | Defines formatting styles that can be applied to text. |
460461
| [`FontSubstCondition`](/slides/python-net/aspose.slides/fontsubstcondition/) | Represents a rule fot font substitution |
461462
| [`GradientDirection`](/slides/python-net/aspose.slides/gradientdirection/) | Represents the gradient style. |
462463
| [`GradientShape`](/slides/python-net/aspose.slides/gradientshape/) | Represents the shape of gradient fill. |

content/python-net/english/aspose.slides/fontsmanager/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ The FontsManager type exposes the following members:
2929
| [`replace_font`](/slides/python-net/aspose.slides/fontsmanager/replace_font/#ifontdata-ifontdata) | Replace font in presentation |
3030
| [`replace_font`](/slides/python-net/aspose.slides/fontsmanager/replace_font/#ifontsubstrule) | Replace font in presentation using information provided in [`FontSubstRule`](/slides/python-net/aspose.slides/fontsubstrule) |
3131
| [`replace_font`](/slides/python-net/aspose.slides/fontsmanager/replace_font/#ifontsubstrulecollection) | Replace font in presentation using information provided in collection of [`FontSubstRule`](/slides/python-net/aspose.slides/fontsubstrule) |
32+
| [`get_font_bytes`](/slides/python-net/aspose.slides/fontsmanager/get_font_bytes/#ifontdata-fontstyletype) | Retrieves the byte array representing the font data for a specified font style and font data. |
33+
| [`get_font_bytes`](/slides/python-net/aspose.slides/fontsmanager/get_font_bytes/#ifontdata-asposepydrawingfontstyle) | Retrieves the byte array representing the font data for a specified font style and font data. |
3234
| [`get_fonts`](/slides/python-net/aspose.slides/fontsmanager/get_fonts/#) | Returns the fonts used in the presentation |
3335
| [`get_substitutions`](/slides/python-net/aspose.slides/fontsmanager/get_substitutions/#) | Gets the information about fonts that will be replaced on the presentation's rendering. |
3436
| [`get_embedded_fonts`](/slides/python-net/aspose.slides/fontsmanager/get_embedded_fonts/#) | Returns the fonts embedded in the presentation |
3537
| [`remove_embedded_font`](/slides/python-net/aspose.slides/fontsmanager/remove_embedded_font/#ifontdata) | Removes the embedded font |
36-
| [`get_font_bytes`](/slides/python-net/aspose.slides/fontsmanager/get_font_bytes/#ifontdata-asposepydrawingfontstyle) | Retrieves the byte array representing the font data for a specified font style and font data. |
3738
| [`get_font_embedding_level`](/slides/python-net/aspose.slides/fontsmanager/get_font_embedding_level/#bytes-str) | Determines the embedding level of a font from the given byte array and font name. |
3839

3940

content/python-net/english/aspose.slides/fontsmanager/get_font_bytes/_index.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@ weight: 30
88
---
99

1010

11+
## get_font_bytes {#ifontdata-fontstyletype}
12+
Retrieves the byte array representing the font data for a specified font style and font data.
13+
14+
### Returns
15+
16+
A byte array containing the font data for the specified font style. If the font data or style is not found, returns None.
17+
18+
19+
20+
```python
21+
def get_font_bytes(self, font_data, font_style):
22+
...
23+
```
24+
25+
26+
| Parameter | Type | Description |
27+
| :- | :- | :- |
28+
| font_data | [`IFontData`](/slides/python-net/aspose.slides/ifontdata) | The font data object containing the information about the font [`IFontData`](/slides/python-net/aspose.slides/ifontdata). |
29+
| font_style | [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype) | The style of the font for which the data is to be retrieved [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype). |
30+
31+
1132
## get_font_bytes {#ifontdata-asposepydrawingfontstyle}
1233
Retrieves the byte array representing the font data for a specified font style and font data.
1334

@@ -33,6 +54,7 @@ def get_font_bytes(self, font_data, font_style):
3354
### See Also
3455
* class [`FontData`](/slides/python-net/aspose.slides/fontdata)
3556
* class [`FontsManager`](/slides/python-net/aspose.slides/fontsmanager)
57+
* enumeration [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype)
3658
* class [`IFontData`](/slides/python-net/aspose.slides/ifontdata)
3759
* module [`aspose.slides`](/slides/python-net/aspose.slides)
3860
* library [`Aspose.Slides`](/slides/python-net)
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: FontStyleType enumeration
3+
second_title: Aspose.Slides for Python via .NET API Reference
4+
description:
5+
type: docs
6+
url: /aspose.slides/fontstyletype/
7+
---
8+
9+
10+
## FontStyleType enumeration
11+
12+
Defines formatting styles that can be applied to text.
13+
14+
The FontStyleType type exposes the following members:
15+
16+
## Fields
17+
18+
| Field | Description |
19+
| :- | :- |
20+
| REGULAR | Standard text. |
21+
| BOLD | Bold text. |
22+
| ITALIC | Italic text. |
23+
| UNDERLINE | Underlined text. |
24+
| STRIKEOUT | Text crossed out with a horizontal line. |
25+
26+
27+
### See Also
28+
* module [`aspose.slides`](/slides/python-net/aspose.slides)
29+
* library [`Aspose.Slides`](/slides/python-net)
30+

content/python-net/english/aspose.slides/ifontsmanager/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ The IFontsManager type exposes the following members:
2929
| [`replace_font`](/slides/python-net/aspose.slides/ifontsmanager/replace_font/#ifontdata-ifontdata) | Replace font in presentation |
3030
| [`replace_font`](/slides/python-net/aspose.slides/ifontsmanager/replace_font/#ifontsubstrule) | Replace font in presentation using information provided in [`IFontSubstRule`](/slides/python-net/aspose.slides/ifontsubstrule) |
3131
| [`replace_font`](/slides/python-net/aspose.slides/ifontsmanager/replace_font/#ifontsubstrulecollection) | Replace font in presentation using information provided in collection of [`IFontSubstRule`](/slides/python-net/aspose.slides/ifontsubstrule) |
32+
| [`get_font_bytes`](/slides/python-net/aspose.slides/ifontsmanager/get_font_bytes/#ifontdata-asposepydrawingfontstyle) | Retrieves the byte array representing the font data for a specified font style and font data. |
33+
| [`get_font_bytes`](/slides/python-net/aspose.slides/ifontsmanager/get_font_bytes/#ifontdata-fontstyletype) | Retrieves the byte array representing the font data for a specified font style and font data. |
3234
| [`get_fonts`](/slides/python-net/aspose.slides/ifontsmanager/get_fonts/#) | Returns the fonts used in the presentation |
3335
| [`get_substitutions`](/slides/python-net/aspose.slides/ifontsmanager/get_substitutions/#) | Gets the information about fonts that will be replaced on the presentation's rendering. |
3436
| [`get_embedded_fonts`](/slides/python-net/aspose.slides/ifontsmanager/get_embedded_fonts/#) | Returns the fonts embedded in the presentation |
3537
| [`remove_embedded_font`](/slides/python-net/aspose.slides/ifontsmanager/remove_embedded_font/#ifontdata) | Removes the embedded font |
36-
| [`get_font_bytes`](/slides/python-net/aspose.slides/ifontsmanager/get_font_bytes/#ifontdata-asposepydrawingfontstyle) | Retrieves the byte array representing the font data for a specified font style and font data. |
3738
| [`get_font_embedding_level`](/slides/python-net/aspose.slides/ifontsmanager/get_font_embedding_level/#bytes-str) | Determines the embedding level of a font from the given byte array and font name. |
3839

3940

content/python-net/english/aspose.slides/ifontsmanager/get_font_bytes/_index.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,30 @@ def get_font_bytes(self, font_data, font_style):
2929
| font_style | **aspose.pydrawing.FontStyle** | The style of the font for which the data is to be retrieved **aspose.pydrawing.FontStyle**. |
3030

3131

32+
## get_font_bytes {#ifontdata-fontstyletype}
33+
Retrieves the byte array representing the font data for a specified font style and font data.
34+
35+
### Returns
36+
37+
A byte array containing the font data for the specified font style. If the font data or style is not found, returns None.
38+
39+
40+
41+
```python
42+
def get_font_bytes(self, font_data, font_style):
43+
...
44+
```
45+
46+
47+
| Parameter | Type | Description |
48+
| :- | :- | :- |
49+
| font_data | [`IFontData`](/slides/python-net/aspose.slides/ifontdata) | The font data object containing the information about the font [`IFontData`](/slides/python-net/aspose.slides/ifontdata). |
50+
| font_style | [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype) | The style of the font for which the data is to be retrieved [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype). |
51+
52+
3253

3354
### See Also
55+
* enumeration [`FontStyleType`](/slides/python-net/aspose.slides/fontstyletype)
3456
* class [`IFontData`](/slides/python-net/aspose.slides/ifontdata)
3557
* class [`IFontsManager`](/slides/python-net/aspose.slides/ifontsmanager)
3658
* module [`aspose.slides`](/slides/python-net/aspose.slides)

0 commit comments

Comments
 (0)