-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f07e7f
commit fafb492
Showing
126 changed files
with
5,466 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: Comprehensive Tutorials and Examples of GroupDocs.Conversion for .NET | ||
linktitle: GroupDocs.Conversion for .NET Tutorials | ||
type: docs | ||
weight: 10 | ||
url: /net/ | ||
description: | ||
is_root: true | ||
--- | ||
|
||
### [File Conversion to PDF](./file-conversion-to-pdf/) | ||
|
||
### [File Format Conversion](./file-format-conversion-tutorials/) | ||
|
||
### [Convert Files to PDF](./convert-files-to-pdf/) | ||
|
||
### [Document Conversion](./document-conversion/) | ||
|
||
### [Converting File Types to PDF](./converting-file-types-to-pdf/) | ||
|
||
### [PDF Conversion](./pdf-conversion/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: Convert Files to PDF | ||
linktitle: Convert Files to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 22 | ||
url: /net/convert-files-to-pdf/ | ||
--- | ||
|
||
## Convert Files to PDF Tutorials | ||
### [Convert DWG CAD Files to PDF](./convert-dwg-to-pdf/) | ||
### [Convert DWT CAD Template Files to PDF](./convert-dwt-to-pdf/) | ||
### [Convert DXF CAD Drawing Exchange Files to PDF](./convert-dxf-to-pdf/) | ||
### [Convert EMF Windows Metafiles to PDF](./convert-emf-to-pdf/) | ||
### [Convert EML Email Messages to PDF](./convert-eml-to-pdf/) | ||
### [Convert EMLX Apple Mail Email Messages to PDF](./convert-emlx-to-pdf/) | ||
### [Convert EMZ Enhanced Metafiles to PDF](./convert-emz-to-pdf/) | ||
### [Convert EPS Encapsulated PostScript Files to PDF](./convert-eps-to-pdf/) | ||
### [Convert EPUB eBooks to PDF](./convert-epub-to-pdf/) | ||
### [Convert FODP OpenDocument Presentations to PDF](./convert-fodp-to-pdf/) | ||
### [Convert FODS OpenDocument Spreadsheets to PDF](./convert-fods-to-pdf/) | ||
### [Convert GIF Images to PDF](./convert-gif-to-pdf/) | ||
### [Convert HTML Web Pages to PDF](./convert-html-to-pdf/) | ||
### [Convert HTM Web Pages to PDF](./convert-htm-to-pdf/) | ||
### [Convert ICO Icons to PDF](./convert-ico-to-pdf/) | ||
### [Convert IFC Building Information Modeling Files to PDF](./convert-ifc-to-pdf/) | ||
### [Convert IGS 3D Model Files to PDF](./convert-igs-to-pdf/) | ||
### [Convert J2C JPEG-LS Compressed Images to PDF](./convert-j2c-to-pdf/) | ||
### [Convert J2K JPEG 2000 Images to PDF](./convert-j2k-to-pdf/) | ||
### [Convert JPEG-LS (.JLS) Files to PDF](./convert-jls-to-pdf/) |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-dwg-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert DWG CAD Files to PDF | ||
linktitle: Convert DWG CAD Files to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 10 | ||
url: /net/convert-files-to-pdf/convert-dwg-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert DWG file into PDF format. | ||
/// For more details about AutoCAD Drawing Database File (.dwg) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-dwg-to-pdf | ||
/// </summary> | ||
internal static class ConvertDwgToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "dwg-converted-to.pdf"); | ||
|
||
// Load the source DWG file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DWG)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-dwt-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert DWT CAD Template Files to PDF | ||
linktitle: Convert DWT CAD Template Files to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 11 | ||
url: /net/convert-files-to-pdf/convert-dwt-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert DWT file into PDF format. | ||
/// For more details about AutoCAD Drawing Template (.dwt) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-dwt-to-pdf | ||
/// </summary> | ||
internal static class ConvertDwtToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "dwt-converted-to.pdf"); | ||
|
||
// Load the source DWT file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DWT)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-dxf-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert DXF CAD Drawing Exchange Files to PDF | ||
linktitle: Convert DXF CAD Drawing Exchange Files to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 12 | ||
url: /net/convert-files-to-pdf/convert-dxf-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert DXF file into PDF format. | ||
/// For more details about Autodesk Drawing Exchange File Format (.dxf) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-dxf-to-pdf | ||
/// </summary> | ||
internal static class ConvertDxfToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "dxf-converted-to.pdf"); | ||
|
||
// Load the source DXF file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DXF)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-emf-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert EMF Windows Metafiles to PDF | ||
linktitle: Convert EMF Windows Metafiles to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 13 | ||
url: /net/convert-files-to-pdf/convert-emf-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert EMF file into PDF format. | ||
/// For more details about Enhanced Metafile Format (.emf) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-emf-to-pdf | ||
/// </summary> | ||
internal static class ConvertEmfToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "emf-converted-to.pdf"); | ||
|
||
// Load the source EMF file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMF)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-eml-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert EML Email Messages to PDF | ||
linktitle: Convert EML Email Messages to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 14 | ||
url: /net/convert-files-to-pdf/convert-eml-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert EML file into PDF format. | ||
/// For more details about E-Mail Message File (.eml) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-eml-to-pdf | ||
/// </summary> | ||
internal static class ConvertEmlToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "eml-converted-to.pdf"); | ||
|
||
// Load the source EML file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EML)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-emlx-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert EMLX Apple Mail Email Messages to PDF | ||
linktitle: Convert EMLX Apple Mail Email Messages to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 15 | ||
url: /net/convert-files-to-pdf/convert-emlx-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert EMLX file into PDF format. | ||
/// For more details about Apple Mail Message (.emlx) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-emlx-to-pdf | ||
/// </summary> | ||
internal static class ConvertEmlxToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "emlx-converted-to.pdf"); | ||
|
||
// Load the source EMLX file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMLX)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
44 changes: 44 additions & 0 deletions
44
content/english/net/convert-files-to-pdf/convert-emz-to-pdf/_index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Convert EMZ Enhanced Metafiles to PDF | ||
linktitle: Convert EMZ Enhanced Metafiles to PDF | ||
second_title: GroupDocs.Conversion .NET API | ||
description: | ||
type: docs | ||
weight: 16 | ||
url: /net/convert-files-to-pdf/convert-emz-to-pdf/ | ||
--- | ||
|
||
## Complete Source Code | ||
```csharp | ||
using System; | ||
using System.IO; | ||
using GroupDocs.Conversion.Options.Convert; | ||
|
||
namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage | ||
{ | ||
/// <summary> | ||
/// This example demonstrates how to convert EMZ file into PDF format. | ||
/// For more details about Enhanced Windows Metafile Compressed (.emz) to Portable Document (.pdf) conversion please check this documentation article | ||
/// https://docs.groupdocs.com/conversion/net/convert-emz-to-pdf | ||
/// </summary> | ||
internal static class ConvertEmzToPdf | ||
{ | ||
public static void Run() | ||
{ | ||
string outputFolder = "Your Document Directory"; | ||
string outputFile = Path.Combine(outputFolder, "emz-converted-to.pdf"); | ||
|
||
// Load the source EMZ file | ||
using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMZ)) | ||
{ | ||
var options = new PdfConvertOptions(); | ||
// Save converted PDF file | ||
converter.Convert(outputFile, options); | ||
} | ||
|
||
Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder); | ||
} | ||
} | ||
} | ||
|
||
``` |
Oops, something went wrong.