Hi
I am trying to convert word to pdf and there are some unusual fonts being used. Due to which failure is happening on AWS lambda. When I am testing locally its working fine.
Can you direct me to a fix to make it workable on AWS Lambda too?
How to provide font files if its missing, I am not sure if it trigger any errors or what?
I am attaching the files which are failing the conversion on LAMBDA only
using (var docFileStream =
await s3FileService.GetDownloadFileStreamAsync(
new AmazonS3FileRequest
{
BucketName = documentFile.BucketName,
Key = GetS3FileKey(documentFile)
}).ConfigureAwait(false))
{
Aspose.Words.Document document = new Aspose.Words.Document(docFileStream);
document.Save(result.ResultStream, Aspose.Words.SaveFormat.Pdf);
WordFiles.zip (23.0 KB)