Java android.graphics BitmapFactory fields, constructors, methods, implement or subclass

Example usage for Java android.graphics BitmapFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.graphics BitmapFactory.

The text is from its open source code.

Constructor

Method

BitmapdecodeByteArray(byte[] data, int offset, int length)
Decode an immutable bitmap from the specified byte array.
BitmapdecodeByteArray(byte[] data, int offset, int length, Options opts)
Decode an immutable bitmap from the specified byte array.
BitmapdecodeFile(String pathName)
Decode a file path into a bitmap.
BitmapdecodeFile(String pathName, Options opts)
Decode a file path into a bitmap.
BitmapdecodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts)
Decode a bitmap from the file descriptor.
BitmapdecodeFileDescriptor(FileDescriptor fd)
Decode a bitmap from the file descriptor.
BitmapdecodeResource(Resources res, int id)
Synonym for #decodeResource(Resources,int,android.graphics.BitmapFactory.Options) with null Options.
BitmapdecodeResource(Resources res, int id, Options opts)
Synonym for opening the given resource and calling #decodeResourceStream .
BitmapdecodeResourceStream(@Nullable Resources res, @Nullable TypedValue value, @Nullable InputStream is, @Nullable Rect pad, @Nullable Options opts)
Decode a new Bitmap from an InputStream.
BitmapdecodeStream(InputStream is)
Decode an input stream into a bitmap.
BitmapdecodeStream(@Nullable InputStream is, @Nullable Rect outPadding, @Nullable Options opts)
Decode an input stream into a bitmap.