Share via


ImageExtensions.AsStream(IImage, ImageFormat, Single) Method

Definition

Converts an image to a stream in the specified format.

public static System.IO.Stream AsStream(this Microsoft.Maui.Graphics.IImage target, Microsoft.Maui.Graphics.ImageFormat format = Microsoft.Maui.Graphics.ImageFormat.Png, float quality = 1);
static member AsStream : Microsoft.Maui.Graphics.IImage * Microsoft.Maui.Graphics.ImageFormat * single -> System.IO.Stream
<Extension()>
Public Function AsStream (target As IImage, Optional format As ImageFormat = Microsoft.Maui.Graphics.ImageFormat.Png, Optional quality As Single = 1) As Stream

Parameters

target
IImage

The image to convert.

format
ImageFormat

The format to encode the image in (default is PNG).

quality
Single

The quality setting for lossy formats like JPEG, ranging from 0 to 1 (default is 1 for maximum quality).

Returns

A memory stream containing the encoded image data, or null if the target image is null.

Applies to