最終更新:2017-05-01 (月) 16:10:16 (2545d)  

Bitmap.createBitmap
Top / Bitmap.createBitmap

https://developer.android.com/reference/android/graphics/Bitmap.html#createBitmap(android.graphics.Bitmap, int, int, int, int)

static BitmapcreateBitmap(Bitmap source, int x, int y, int width, int height)Returns an immutable bitmap from the specified subset of the source bitmap.
static BitmapcreateBitmap(int[] colors, int width, int height, Bitmap.Config config)Returns a immutable bitmap with the specified width and height, with each pixel value set to the corresponding value in the colors array.
static BitmapcreateBitmap(Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter)Returns an immutable bitmap from subset of the source bitmap, transformed by the optional matrix.
static BitmapcreateBitmap(Bitmap src)Returns an immutable bitmap from the source bitmap.
static BitmapcreateBitmap(DisplayMetrics display, int[] colors, int offset, int stride, int width, int height, Bitmap.Config config)Returns a immutable bitmap with the specified width and height, with each pixel value set to the corresponding value in the colors array.
static BitmapcreateBitmap(DisplayMetrics display, int[] colors, int width, int height, Bitmap.Config config)Returns a immutable bitmap with the specified width and height, with each pixel value set to the corresponding value in the colors array.
static BitmapcreateBitmap(DisplayMetrics display, int width, int height, Bitmap.Config config)Returns a mutable bitmap with the specified width and height.
static BitmapcreateBitmap(int[] colors, int offset, int stride, int width, int height, Bitmap.Config config)Returns a immutable bitmap with the specified width and height, with each pixel value set to the corresponding value in the colors array.