Hey Tahir,
I came across the same problem with guoxuefeng.
I noticed you mentioned that Install Aspose.Words via Nuget. I’d tried this method but not works for my server.
Here is the steps:
- Using docker version mono to install dotnet
- mono version: 5.2
- dotnet version: 2.2
- Install nuget
- nuget version 4.8.2
dotnet new sln
-
dotnet new console
then add this project into solution nuget install Aspose.Words
-
dotnet add package Aspose.Words --version 19.4.0
this step is just add reference into .csproj - write some simple code like
new Document()
,doc.Save()
dotnet run
Result:
Then I got a pdf with no image.
Could you help me fix out this problem?
Thanks