Hi i am using Aspose.Words.dll to convert word Doc to PDF
Here is my code
var fileName = System.AppDomain.CurrentDomain.BaseDirectory + Guid.NewGuid().ToString();
File.WriteAllBytes(fileName + ".docx", wordBytes);
var doc = new Aspose.Words.Document(fileName + ".docx");
doc.Save(fileName + ".pdf");
If i run the above code it successfully convert Word to PDF but my problem is i have barcode font in my word but that was not show as barcode in PDF. It display the word.
I have tried like below also,
var saveOptions = new PdfSaveOptions();
saveOptions.EmbedFullFonts = true;
doc.Save(fileName + ".pdf", saveOptions);
But nothing will happen.
Can any on help me to solve this issue?
Thanks,
Pandian