Missing assembly error when converting .pptx file to PDF using Syncfusion
up vote
0
down vote
favorite
I have the following code for converting a pptx to a pdf:
IPresentation presentation = Presentation.Open(filePath);
presentation.ChartToImageConverter = new ChartToImageConverter();
pdfDocument = PresentationToPdfConverter.Convert(presentation);
presentation.Close();
However, when the code hits the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it gets the following error:
Could not load file or assembly 'Syncfusion.Compression.Base, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)'
I have verified my web.config and the dll in the references an the dll is here with the correct version.
However when I remove the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it works fine.
Any idea what I am missing here?
Thanks
c# syncfusion
add a comment |
up vote
0
down vote
favorite
I have the following code for converting a pptx to a pdf:
IPresentation presentation = Presentation.Open(filePath);
presentation.ChartToImageConverter = new ChartToImageConverter();
pdfDocument = PresentationToPdfConverter.Convert(presentation);
presentation.Close();
However, when the code hits the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it gets the following error:
Could not load file or assembly 'Syncfusion.Compression.Base, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)'
I have verified my web.config and the dll in the references an the dll is here with the correct version.
However when I remove the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it works fine.
Any idea what I am missing here?
Thanks
c# syncfusion
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have the following code for converting a pptx to a pdf:
IPresentation presentation = Presentation.Open(filePath);
presentation.ChartToImageConverter = new ChartToImageConverter();
pdfDocument = PresentationToPdfConverter.Convert(presentation);
presentation.Close();
However, when the code hits the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it gets the following error:
Could not load file or assembly 'Syncfusion.Compression.Base, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)'
I have verified my web.config and the dll in the references an the dll is here with the correct version.
However when I remove the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it works fine.
Any idea what I am missing here?
Thanks
c# syncfusion
I have the following code for converting a pptx to a pdf:
IPresentation presentation = Presentation.Open(filePath);
presentation.ChartToImageConverter = new ChartToImageConverter();
pdfDocument = PresentationToPdfConverter.Convert(presentation);
presentation.Close();
However, when the code hits the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it gets the following error:
Could not load file or assembly 'Syncfusion.Compression.Base, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)'
I have verified my web.config and the dll in the references an the dll is here with the correct version.
However when I remove the line:
presentation.ChartToImageConverter = new ChartToImageConverter();
it works fine.
Any idea what I am missing here?
Thanks
c# syncfusion
c# syncfusion
edited yesterday
asked yesterday
tabby
581827
581827
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
I suspect you are using different versions of Syncfusion assemblies (Compression.Base and OfficeChartToImageConverter.Base) to convert the pptx document to PDF. Can you crosscheck if the assemblies (Compression.Base and OfficeChartToImageConverter.Base) are of same version. If you still have trouble in fixing this issue, let me know I will share a working sample for your reference.
Note: I work for Syncfusion
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I suspect you are using different versions of Syncfusion assemblies (Compression.Base and OfficeChartToImageConverter.Base) to convert the pptx document to PDF. Can you crosscheck if the assemblies (Compression.Base and OfficeChartToImageConverter.Base) are of same version. If you still have trouble in fixing this issue, let me know I will share a working sample for your reference.
Note: I work for Syncfusion
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
add a comment |
up vote
1
down vote
I suspect you are using different versions of Syncfusion assemblies (Compression.Base and OfficeChartToImageConverter.Base) to convert the pptx document to PDF. Can you crosscheck if the assemblies (Compression.Base and OfficeChartToImageConverter.Base) are of same version. If you still have trouble in fixing this issue, let me know I will share a working sample for your reference.
Note: I work for Syncfusion
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
add a comment |
up vote
1
down vote
up vote
1
down vote
I suspect you are using different versions of Syncfusion assemblies (Compression.Base and OfficeChartToImageConverter.Base) to convert the pptx document to PDF. Can you crosscheck if the assemblies (Compression.Base and OfficeChartToImageConverter.Base) are of same version. If you still have trouble in fixing this issue, let me know I will share a working sample for your reference.
Note: I work for Syncfusion
I suspect you are using different versions of Syncfusion assemblies (Compression.Base and OfficeChartToImageConverter.Base) to convert the pptx document to PDF. Can you crosscheck if the assemblies (Compression.Base and OfficeChartToImageConverter.Base) are of same version. If you still have trouble in fixing this issue, let me know I will share a working sample for your reference.
Note: I work for Syncfusion
answered 5 hours ago
Karthikeyan
516
516
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
add a comment |
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
I have checked the versions and for the version for assembly Compression.Base is 16.3450.0.29 and the version for OfficeChartToImageConverter.Base is 16.3450.0.21.
– tabby
8 mins ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204283%2fmissing-assembly-error-when-converting-pptx-file-to-pdf-using-syncfusion%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password