[C#/UWP] StorageItemContentProperties 클래스 : GetImagePropertiesAsync 메소드를 사용해 이미지 속성 구하기
C#/UWP 2021. 6. 3. 22:02728x90
728x170
■ StorageItemContentProperties 클래스의 GetImagePropertiesAsync 메소드를 사용해 이미지 속성을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
using Windows.Storage;
using Windows.Storage.FileProperties;
StorageFile storageFile;
...
ImageProperties imageProperties = await storageFile.Properties.GetImagePropertiesAsync();
728x90
그리드형(광고전용)
'C# > UWP' 카테고리의 다른 글
[C#/UWP] AppBarButton 엘리먼트 사용하기 (0) | 2021.06.05 |
---|---|
[C#/UWP] CommandBar 엘리먼트 사용하기 (0) | 2021.06.05 |
[C#/UWP] XamlCompositionBrushBase 클래스 : 커스텀 혼합 브러시 사용하기 (0) | 2021.06.04 |
[C#/UWP] BitmapImage 클래스 : StorageFile 객체에서 썸네일 비트맵 이미지 구하기 (0) | 2021.06.03 |
[C#/UWP] BitmapImage 클래스 : StorageFile 객체에서 비트맵 이미지 구하기 (0) | 2021.06.03 |
[C#/UWP] StorageFileQueryResult 클래스 : GetFilesAsync 메소드를 사용해 현재 패키지의 하위 폴더에서 파일 리스트 구하기 (0) | 2021.06.03 |
[C#/UWP] Package 클래스 : InstalledLocation 속성을 사용해 현재 패키지의 저장소 폴더 구하기 (0) | 2021.06.03 |
[C#/UWP] SystemNavigationManager 클래스 : AppViewBackButtonVisibility 속성을 사용해 제목 표시줄 뒤로가기 버튼 표시 여부 설정하기 (0) | 2021.06.03 |
[C#/UWP] SystemNavigationManager 클래스 : BackRequested 이벤트 사용하기 (0) | 2021.06.03 |
[C#/UWP] ConnectedAnimation 클래스 : 페이지 이동시 애니메이션 사용하기 (0) | 2021.06.02 |