Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
If the sheet is empty, then Aspose.Cells will not print anything when you export the worksheet to an image. You can change this behavior by using ImageOrPrintOptions.getOutputBlankPageWhenNothingToPrint() property. When you set it true, it will print the blank page.
The following sample code creates an empty workbook which has an empty worksheet and renders the empty worksheet to an image after setting the ImageOrPrintOptions.getOutputBlankPageWhenNothingToPrint() property as true. Consequently, it generates the blank page as there is nothing to print which you can see in the image below.

const path = require("path");
const AsposeCells = require("aspose.cells.node");
// Output directory
const outputDir = path.join(__dirname, "output");
// Create workbook
const wb = new AsposeCells.Workbook();
// Access first worksheet - it is empty sheet
const ws = wb.getWorksheets().get(0);
// Specify image or print options
// Since the sheet is blank, we will set OutputBlankPageWhenNothingToPrint to true
// So that empty page gets printed
const opts = new AsposeCells.ImageOrPrintOptions();
opts.setImageType(AsposeCells.ImageType.Png);
opts.setOutputBlankPageWhenNothingToPrint(true);
// Render empty sheet to png image
const sr = new AsposeCells.SheetRender(ws, opts);
sr.toImage(0, path.join(outputDir, "OutputBlankPageWhenNothingToPrint.png"));
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.