다음을 통해 공유


BitmapFactory.DecodeFile 메서드

정의

오버로드

DecodeFile(String)

파일 경로를 비트맵으로 디코딩합니다.

DecodeFile(String, BitmapFactory+Options)

파일 경로를 비트맵으로 디코딩합니다.

DecodeFile(String)

파일 경로를 비트맵으로 디코딩합니다.

[Android.Runtime.Register("decodeFile", "(Ljava/lang/String;)Landroid/graphics/Bitmap;", "")]
public static Android.Graphics.Bitmap? DecodeFile (string? pathName);
[<Android.Runtime.Register("decodeFile", "(Ljava/lang/String;)Landroid/graphics/Bitmap;", "")>]
static member DecodeFile : string -> Android.Graphics.Bitmap

매개 변수

pathName
String

디코딩할 파일의 전체 경로 이름입니다.

반환

결과 디코딩된 비트맵이거나, 디코딩할 수 없는 경우 null입니다.

특성

설명

파일 경로를 비트맵으로 디코딩합니다. 지정된 파일 이름이 null이거나 비트맵으로 디코딩할 수 없는 경우 함수는 null을 반환합니다.

에 대한 android.graphics.BitmapFactory.decodeFile(java.lang.String)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

DecodeFile(String, BitmapFactory+Options)

파일 경로를 비트맵으로 디코딩합니다.

[Android.Runtime.Register("decodeFile", "(Ljava/lang/String;Landroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;", "")]
public static Android.Graphics.Bitmap? DecodeFile (string? pathName, Android.Graphics.BitmapFactory.Options? opts);
[<Android.Runtime.Register("decodeFile", "(Ljava/lang/String;Landroid/graphics/BitmapFactory$Options;)Landroid/graphics/Bitmap;", "")>]
static member DecodeFile : string * Android.Graphics.BitmapFactory.Options -> Android.Graphics.Bitmap

매개 변수

pathName
String

디코딩할 파일의 전체 경로 이름입니다.

opts
BitmapFactory.Options

null-ok; 다운샘플링을 제어하는 옵션 및 이미지를 완전히 디코딩해야 하는지 아니면 크기만 반환되는지 여부를 제어합니다.

반환

결과 디코딩된 비트맵이거나, 디코딩할 수 없는 경우 null입니다.

특성

설명

에 대한 android.graphics.BitmapFactory.decodeFile(java.lang.String)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상