Running the evaluation version of Aspose.Cells 8.2.2.0.
Converting xlsx to PDF using the .NET 3.5 assembly.
Locally running VS2012 / IISExpress --> all fine
Publish to an Azure website --> "Shape to Image Error!"
Any clues?
Thanks!
Peter
My code roughly looks like:
using (var input = new MemoryStream())
{
using (var output = new MemoryStream())
{
template.TemplateFile.SaveToStream(input); // xlsx file
input.Position = 0;
var wb = new Workbook(input);
wb.Save(output, SaveFormat.Pdf);
StreamToResponse(output, fileName);
}
}