Lines Matching refs:createBitmap

594         Bitmap b = Bitmap.createBitmap(src, 0, 0, width, height, m, filter);
611 public static Bitmap createBitmap(Bitmap src) {
612 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
631 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height) {
632 return createBitmap(source, x, y, width, height, null, false);
659 public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height,
707 bitmap = createBitmap(neww, newh, newConfig, source.hasAlpha());
718 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888 : newConfig,
752 public static Bitmap createBitmap(int width, int height, Config config) {
753 return createBitmap(width, height, config, true);
767 public static Bitmap createBitmap(DisplayMetrics display, int width,
769 return createBitmap(display, width, height, config, true);
785 private static Bitmap createBitmap(int width, int height, Config config, boolean hasAlpha) {
786 return createBitmap(null, width, height, config, hasAlpha);
804 private static Bitmap createBitmap(DisplayMetrics display, int width, int height,
841 public static Bitmap createBitmap(int colors[], int offset, int stride,
843 return createBitmap(null, colors, offset, stride, width, height, config);
866 public static Bitmap createBitmap(DisplayMetrics display, int colors[],
905 public static Bitmap createBitmap(int colors[], int width, int height, Config config) {
906 return createBitmap(null, colors, 0, width, width, height, config);
926 public static Bitmap createBitmap(DisplayMetrics display, int colors[],
928 return createBitmap(display, colors, 0, width, width, height, config);