diff --git a/Getting Started/Azure V4 Function/Convert Excel to Image/Create_Excel_to_Image/Function1.cs b/Getting Started/Azure V4 Function/Convert Excel to Image/Create_Excel_to_Image/Function1.cs index 83b8367f..12553a5a 100644 --- a/Getting Started/Azure V4 Function/Convert Excel to Image/Create_Excel_to_Image/Function1.cs +++ b/Getting Started/Azure V4 Function/Convert Excel to Image/Create_Excel_to_Image/Function1.cs @@ -36,9 +36,6 @@ public static async Task Run([HttpTrigger(AuthorizationLeve IWorkbook workbook = application.Workbooks.Open(excelStream); IWorksheet worksheet = workbook.Worksheets[0]; - //Initialize XlsIO renderer. - application.XlsIORenderer = new XlsIORenderer(); - //Create the MemoryStream to save the image. MemoryStream imageStream = new MemoryStream();