BitmapFactory.DecodeFile 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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
要解码的文件的完整路径名称。
null-ok;控制向下采样以及图像是应完全解码还是只返回大小的选项。
返回
生成的解码位图,如果无法解码,则为 null。
- 属性
注解
适用于 . 的 android.graphics.BitmapFactory.decodeFile(java.lang.String)
Java 文档
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。