How to deploy .NET Core application with Word to PDF conversion capabilities in Linux OS?
Syncfusion Essential DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can convert Word document to PDF using ASP.NET Core application in Linux OS.
NuGet packages required:
From v23.1.40
NuGet packages to install |
NuGet packages to install additionally |
NuGet packages to install additionally |
From v20.1.0.x
NuGet packages to install additionally |
SkiaSharp.NativeAssets.Linux v2.88.0-preview.209 |
From v19.4.0.x
NuGet packages to install additionally |
From v18.4.0.x
NuGet packages to install additionally |
Prior to v18.4.0.x
NuGet package | Installation command in package manager |
| Install-package Syncfusion.DocIORenderer.Net.Core -source https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core/ |
| Install-Package SkiaSharp -Version 1.59.3 -source https://www.nuget.org/packages/SkiaSharp/1.59.3 |
Additionally, we required SkiaSharp.Linux helper NuGet package which can be generated by following below steps.
- Download libSkiaSharp.so from here.
- Create a folder and name it as SkiaSharp.Linux. Then, place the downloaded file in the folder structure “SkiaSharp.Linux\runtimes\linux-x64\native”
- Create a nuspec file with name SkiaSharp.Linux.nuspec using following metadata information and place it inside SkiaSharp.Linux folder. The nuspec file can be customized as per your need.
<?xml version="1.0" encoding="utf-8"?><package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> <metadata> <id>SkiaSharp.Linux</id> <version>1.59.3</version> <title>SkiaSharp for Linux</title> <authors>Syncfusion Inc.</authors> <owners>Syncfusion Inc.</owners> <requireLicenseAcceptance>false</requireLicenseAcceptance> <description>SkiaSharp for Linux is a supporting package for Linux platforms.</description> <tags>linux,cross-platform,skiasharp,net-standard,net-core,word-to-pdf</tags> <dependencies> <group targetFramework=".NETStandard1.4"> <dependency id="SkiaSharp" version="1.59.3" /> </group> </dependencies> </metadata></package>
- Make sure the nuget.exe file is present along with SkiaSharp.Linux folder (in the parent folder of SkiaSharp.Linux folder). If not download it from here.
- Open a command prompt and navigate to SkiaSharp.Linux folder
- Execute the following command
nuget pack SkiaSharp.Linux\SkiaSharp.Linux.nuspec -outputdirectory "C:\NuGet ". The output directory can be customized as per your need.
Now, SkiaSharp.Linux NuGet will be generated in the mentioned output directory and add the generated NuGet as additional reference.
You can also find the SkiaSharp.Linux NuGet package created by us from here.
See Also:
Convert Word document to PDF in Azure Environment
Convert Word document to PDF in Azure App service on Linux
Convert Word document to PDF in Azure Functions V1
Convert Word document to PDF in AWS Lambda
Mail merge Word document and convert to PDF in Azure Functions V2
Conclusion
I hope you enjoyed learning about how to deploy .NET Core application with Word to PDF conversion capabilities in Linux OS.
You can refer to our .NET Core Word Library’s feature tour page to know about its other groundbreaking feature representations. You can also explore our .NET Core Word Library example to understand how to present and manipulate data.
For current customers, you can check out our .NET Core components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our .NET Core Word Library and other .NET Core components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!