Skip to content

Commit 6dfb95d

Browse files
Merge branch 'main' into production
2 parents 4170353 + 590ca91 commit 6dfb95d

File tree

112 files changed

+737
-347
lines changed

Some content is hidden

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

112 files changed

+737
-347
lines changed

english/net/aspose.html.converters/converter/_index.md

Lines changed: 47 additions & 44 deletions
Large diffs are not rendered by default.

english/net/aspose.html.converters/converter/convertepub/_index.md

Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,93 @@
11
---
22
title: Converter.ConvertEPUB
33
second_title: Aspose.HTML for .NET API Reference
4-
description: Converter ConvertEPUB method. Convert epub source to image. Result is image file
4+
description: Converter ConvertEPUB method. Convert epub source to pdf. Result is pdf file
55
type: docs
66
weight: 10
77
url: /net/aspose.html.converters/converter/convertepub/
88
---
9+
## ConvertEPUB(*Stream, [Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_20}
10+
11+
Convert epub source to pdf. Result is pdf file.
12+
13+
```csharp
14+
public static void ConvertEPUB(Stream stream, Configuration configuration, PdfSaveOptions options,
15+
ICreateStreamProvider provider)
16+
```
17+
18+
| Parameter | Type | Description |
19+
| --- | --- | --- |
20+
| stream | Stream | Conversion source. |
21+
| configuration | Configuration | The environment configuration. |
22+
| options | PdfSaveOptions | Conversion options. |
23+
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
24+
25+
### See Also
26+
27+
* class [Configuration](../../../aspose.html/configuration/)
28+
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
29+
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
30+
* class [Converter](../)
31+
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
32+
* assembly [Aspose.HTML](../../../)
33+
34+
---
35+
36+
## ConvertEPUB(*string, [Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_36}
37+
38+
Convert epub source to pdf. Result is pdf file.
39+
40+
```csharp
41+
public static void ConvertEPUB(string sourcePath, Configuration configuration,
42+
PdfSaveOptions options, ICreateStreamProvider provider)
43+
```
44+
45+
| Parameter | Type | Description |
46+
| --- | --- | --- |
47+
| sourcePath | String | EPUB source file path. It will be combined with the current directory path to form an absolute URL. |
48+
| configuration | Configuration | The environment configuration. |
49+
| options | PdfSaveOptions | Conversion options. |
50+
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
51+
52+
### See Also
53+
54+
* class [Configuration](../../../aspose.html/configuration/)
55+
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
56+
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
57+
* class [Converter](../)
58+
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
59+
* assembly [Aspose.HTML](../../../)
60+
61+
---
62+
63+
## ConvertEPUB(*[Url](../../../aspose.html/url/)[Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_4}
64+
65+
Convert epub source to pdf. Result is pdf file.
66+
67+
```csharp
68+
public static void ConvertEPUB(Url sourceUrl, Configuration configuration, PdfSaveOptions options,
69+
ICreateStreamProvider provider)
70+
```
71+
72+
| Parameter | Type | Description |
73+
| --- | --- | --- |
74+
| sourceUrl | Url | The source URL. |
75+
| configuration | Configuration | The environment configuration. |
76+
| options | PdfSaveOptions | Conversion options. |
77+
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
78+
79+
### See Also
80+
81+
* class [Url](../../../aspose.html/url/)
82+
* class [Configuration](../../../aspose.html/configuration/)
83+
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
84+
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
85+
* class [Converter](../)
86+
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
87+
* assembly [Aspose.HTML](../../../)
88+
89+
---
90+
991
## ConvertEPUB(*Stream, [ImageSaveOptions](../../../aspose.html.saving/imagesaveoptions/), string*) {#convertepub_27}
1092

1193
Convert epub source to image. Result is image file.
@@ -1149,85 +1231,3 @@ public static void ConvertEPUB(Url sourceUrl, PdfSaveOptions options,
11491231
* class [Converter](../)
11501232
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
11511233
* assembly [Aspose.HTML](../../../)
1152-
1153-
---
1154-
1155-
## ConvertEPUB(*Stream, [Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_20}
1156-
1157-
Convert epub source to pdf. Result is pdf file.
1158-
1159-
```csharp
1160-
public static void ConvertEPUB(Stream stream, Configuration configuration, PdfSaveOptions options,
1161-
ICreateStreamProvider provider)
1162-
```
1163-
1164-
| Parameter | Type | Description |
1165-
| --- | --- | --- |
1166-
| stream | Stream | Conversion source. |
1167-
| configuration | Configuration | The environment configuration. |
1168-
| options | PdfSaveOptions | Conversion options. |
1169-
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
1170-
1171-
### See Also
1172-
1173-
* class [Configuration](../../../aspose.html/configuration/)
1174-
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
1175-
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
1176-
* class [Converter](../)
1177-
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
1178-
* assembly [Aspose.HTML](../../../)
1179-
1180-
---
1181-
1182-
## ConvertEPUB(*string, [Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_36}
1183-
1184-
Convert epub source to pdf. Result is pdf file.
1185-
1186-
```csharp
1187-
public static void ConvertEPUB(string sourcePath, Configuration configuration,
1188-
PdfSaveOptions options, ICreateStreamProvider provider)
1189-
```
1190-
1191-
| Parameter | Type | Description |
1192-
| --- | --- | --- |
1193-
| sourcePath | String | EPUB source file path. It will be combined with the current directory path to form an absolute URL. |
1194-
| configuration | Configuration | The environment configuration. |
1195-
| options | PdfSaveOptions | Conversion options. |
1196-
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
1197-
1198-
### See Also
1199-
1200-
* class [Configuration](../../../aspose.html/configuration/)
1201-
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
1202-
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
1203-
* class [Converter](../)
1204-
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
1205-
* assembly [Aspose.HTML](../../../)
1206-
1207-
---
1208-
1209-
## ConvertEPUB(*[Url](../../../aspose.html/url/)[Configuration](../../../aspose.html/configuration/)[PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)[ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)*) {#convertepub_4}
1210-
1211-
Convert epub source to pdf. Result is pdf file.
1212-
1213-
```csharp
1214-
public static void ConvertEPUB(Url sourceUrl, Configuration configuration, PdfSaveOptions options,
1215-
ICreateStreamProvider provider)
1216-
```
1217-
1218-
| Parameter | Type | Description |
1219-
| --- | --- | --- |
1220-
| sourceUrl | Url | The source URL. |
1221-
| configuration | Configuration | The environment configuration. |
1222-
| options | PdfSaveOptions | Conversion options. |
1223-
| provider | ICreateStreamProvider | Implementation of the [`ICreateStreamProvider`](../../../aspose.html.io/icreatestreamprovider/) interface, which will be used to get an output stream. |
1224-
1225-
### See Also
1226-
1227-
* class [Url](../../../aspose.html/url/)
1228-
* class [Configuration](../../../aspose.html/configuration/)
1229-
* class [PdfSaveOptions](../../../aspose.html.saving/pdfsaveoptions/)
1230-
* interface [ICreateStreamProvider](../../../aspose.html.io/icreatestreamprovider/)
1231-
* class [Converter](../)
1232-
* namespace [Aspose.Html.Converters](../../../aspose.html.converters/)
1233-
* assembly [Aspose.HTML](../../../)

0 commit comments

Comments
 (0)