次の方法で共有


LoadedImageSurface.StartLoadFromStream メソッド

定義

オーバーロード

StartLoadFromStream(IRandomAccessStream)

指定された IRandomAccessStream から、イメージ ソースで定義されている自然なサイズで LoadedImageSurface にイメージを読み込みます。

StartLoadFromStream(IRandomAccessStream, Size)

指定された IRandomAccessStream から、目的の最大サイズで LoadedImageSurface にイメージを読み込みます。

StartLoadFromStream(IRandomAccessStream)

指定された IRandomAccessStream から、イメージ ソースで定義されている自然なサイズで LoadedImageSurface にイメージを読み込みます。

public:
 static LoadedImageSurface ^ StartLoadFromStream(IRandomAccessStream ^ stream);
/// [Windows.Foundation.Metadata.Overload("StartLoadFromStream")]
 static LoadedImageSurface StartLoadFromStream(IRandomAccessStream const& stream);
[Windows.Foundation.Metadata.Overload("StartLoadFromStream")]
public static LoadedImageSurface StartLoadFromStream(IRandomAccessStream stream);
function startLoadFromStream(stream)
Public Shared Function StartLoadFromStream (stream As IRandomAccessStream) As LoadedImageSurface

パラメーター

stream
IRandomAccessStream

イメージの読み込み元のストリーム。

戻り値

イメージがサーフェスに読 み込まれた LoadedImageSurface のインスタンス。

属性

適用対象

StartLoadFromStream(IRandomAccessStream, Size)

指定された IRandomAccessStream から、目的の最大サイズで LoadedImageSurface にイメージを読み込みます。

public:
 static LoadedImageSurface ^ StartLoadFromStream(IRandomAccessStream ^ stream, Size desiredMaxSize);
/// [Windows.Foundation.Metadata.Overload("StartLoadFromStreamWithSize")]
 static LoadedImageSurface StartLoadFromStream(IRandomAccessStream const& stream, Size const& desiredMaxSize);
[Windows.Foundation.Metadata.Overload("StartLoadFromStreamWithSize")]
public static LoadedImageSurface StartLoadFromStream(IRandomAccessStream stream, Size desiredMaxSize);
function startLoadFromStream(stream, desiredMaxSize)
Public Shared Function StartLoadFromStream (stream As IRandomAccessStream, desiredMaxSize As Size) As LoadedImageSurface

パラメーター

stream
IRandomAccessStream

イメージの読み込み元のストリーム。

desiredMaxSize
Size

デバイスに依存しないピクセル単位の画像サーフェスの目的の最大サイズ。

戻り値

イメージがサーフェスに読 み込まれた LoadedImageSurface のインスタンス。

属性

注釈

既定では、 LoadedImageSurface は、受信ソースの縦横比と画像コンテンツを維持しながら、できるだけ多くの 必要なMaxSize を埋めます。 これにより、入力 desiredMaxSize と異なるデコードサイズが発生する可能性があります

適用対象