I’m using aspose for .NET but I’m unable to use generate a pdf from word where accessibility text is avaliable on pictures. The file i want to convert: test.docx (39.0 KB)
I have tried to use your online converter: https://products.aspose.app/words/conversion, where it does not work either.
My code:
Aspose.Words.Saving.PdfSaveOptions options = new Aspose.Words.Saving.PdfSaveOptions();
options.SaveFormat = Aspose.Words.SaveFormat.Pdf;
options.ExportDocumentStructure = true;
options.PreserveFormFields = true;
Aspose.Words.Document document = new Aspose.Words.Document(stream);
var fileStream = fileStreamService.CreateFileStream();
document.Save(fileStream, options);
fileStream.Flush();
return fileStream;