다음을 통해 공유


LoadedImageSurface.StartLoadFromUri 메서드

정의

오버로드

StartLoadFromUri(Uri)

이미지 원본에 정의된 자연 크기의 제공된 URI(Uniform Resource Identifier)에서 LoadedImageSurface 에 이미지를 로드합니다.

StartLoadFromUri(Uri, Size)

원하는 최대 크기로 제공된 URI(Uniform Resource Identifier)에서 LoadedImageSurface 에 이미지를 로드합니다.

StartLoadFromUri(Uri)

이미지 원본에 정의된 자연 크기의 제공된 URI(Uniform Resource Identifier)에서 LoadedImageSurface 에 이미지를 로드합니다.

public:
 static LoadedImageSurface ^ StartLoadFromUri(Uri ^ uri);
/// [Windows.Foundation.Metadata.Overload("StartLoadFromUri")]
 static LoadedImageSurface StartLoadFromUri(Uri const& uri);
[Windows.Foundation.Metadata.Overload("StartLoadFromUri")]
public static LoadedImageSurface StartLoadFromUri(System.Uri uri);
function startLoadFromUri(uri)
Public Shared Function StartLoadFromUri (uri As Uri) As LoadedImageSurface

매개 변수

uri
Uri Uri

이미지가 로드되는 URI입니다.

반환

이미지가 표면에 로드된 LoadedImageSurface의 instance.

특성

적용 대상

StartLoadFromUri(Uri, Size)

원하는 최대 크기로 제공된 URI(Uniform Resource Identifier)에서 LoadedImageSurface 에 이미지를 로드합니다.

public:
 static LoadedImageSurface ^ StartLoadFromUri(Uri ^ uri, Size desiredMaxSize);
/// [Windows.Foundation.Metadata.Overload("StartLoadFromUriWithSize")]
 static LoadedImageSurface StartLoadFromUri(Uri const& uri, Size const& desiredMaxSize);
[Windows.Foundation.Metadata.Overload("StartLoadFromUriWithSize")]
public static LoadedImageSurface StartLoadFromUri(System.Uri uri, Size desiredMaxSize);
function startLoadFromUri(uri, desiredMaxSize)
Public Shared Function StartLoadFromUri (uri As Uri, desiredMaxSize As Size) As LoadedImageSurface

매개 변수

uri
Uri Uri

이미지가 로드되는 URI입니다.

desiredMaxSize
Size

디바이스 독립적 픽셀에서 이미지 표면의 원하는 최대 크기입니다.

반환

이미지가 표면에 로드된 LoadedImageSurface의 instance.

특성

설명

기본적으로 LoadedImageSurface 는 들어오는 원본의 가로 세로 비율 및 이미지 콘텐츠를 유지하면서 원하는 MaxSize 를 최대한 많이 채웁니다. 이로 인해 desiredMaxSize 입력과 다른 디코딩 크기가 발생할 수 있습니다.

적용 대상