Hello,
I make a Docx conversion, with input file “doc1.docx” but we have an exception and output file is empty.
Could you give me an advice for make this conversion without exception?
We use this code for reproduce this problem:
public void pdftest()
{
Document d1 = new Document(@“D:\Temp\INC000004344762\doc1.docx”);
PdfSaveOptions options = new PdfSaveOptions();
options.SaveFormat = SaveFormat.Pdf;
try
{
d1.Save(@“D:\Temp\INC000004344762\doc1resultat.pdf”,options);
}
catch
{
}
}
Thank you
Maxime