Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

OfficeImage.GetImageBytesStreamSafe(OfficeImageFormat) Method

Attempts to get image data as a stream in the specified format, and in case of a failure, gets the data in PNG format.

Namespace: DevExpress.Office.Utils

Assembly: DevExpress.Office.v20.2.Core.dll

NuGet Package: DevExpress.Office.Core

Declaration

public virtual Stream GetImageBytesStreamSafe(
    OfficeImageFormat imageFormat
)

Parameters

Name Type Description
imageFormat OfficeImageFormat

An OfficeImageFormat enumeration member specifying the format of the resulting image data.

Returns

Type Description
Stream

A Stream containing image data.

Remarks

The GetImageBytesStreamSafe method prevents an unknown format exception from being fired and uses the PNG format as a fallback.

See Also