OfficeOpenXml.Drawing.ExcelDrawing.SetPixelWidth Divide by Zero when running on Azure Websites
description
Inserting an image with ExcelPicture pic = ws.Drawings.AddPicture(uniqueImageName, img) and also a chard with
var chart = pivotWorksheet.Drawings.AddChart("PivotChart", eChartType.ColumnClustered, pivotTable);
chart.SetPosition(endRow + 2, 20, 1, 10);
chart.SetSize(600, 400);
gives a divide by zero error. Identical code identical data runs in other environments.