WorkbookRender.ToImage

ToImage(Stream)

Render whole workbook as Tiff Image to stream.

public void ToImage(Stream stream)
ParameterTypeDescription
streamStreamthe stream of the output image

See Also


ToImage(string)

Render whole workbook as Tiff Image to a file.

public void ToImage(string filename)
ParameterTypeDescription
filenameStringthe filename of the output image

See Also


ToImage(int, string)

Render certain page to a file.

public void ToImage(int pageIndex, string fileName)
ParameterTypeDescription
pageIndexInt32indicate which page is to be converted
fileNameStringfilename of the output image

See Also


ToImage(int, Stream)

Render certain page to a stream.

public void ToImage(int pageIndex, Stream stream)
ParameterTypeDescription
pageIndexInt32indicate which page is to be converted
streamStreamthe stream of the output image

See Also


ToImage(int)

Render certain page to a Bitmap object.

public Bitmap ToImage(int pageIndex)
ParameterTypeDescription
pageIndexInt32indicate which page is to be converted

Return Value

the bitmap object of the page

See Also