Home | History | Annotate | Download | only in gesture

Lines Matching refs:bitmap

19 import android.graphics.Bitmap;
176 * Creates a bitmap of the gesture with a transparent background.
178 * @param width width of the target bitmap
179 * @param height height of the target bitmap
183 * @return the bitmap
185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) {
186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
187 final Canvas canvas = new Canvas(bitmap);
208 return bitmap;
212 * Creates a bitmap of the gesture with a transparent background.
218 * @return the bitmap
220 public Bitmap toBitmap(int width, int height, int inset, int color) {
221 final Bitmap bitmap = Bitmap.createBitmap(width, height,
222 Bitmap.Config.ARGB_8888);
223 final Canvas canvas = new Canvas(bitmap);
251 return bitmap;