Skip to content

Instantly share code, notes, and snippets.

@catehstn
Last active September 25, 2023 09:16
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save catehstn/6fc1a9ab7388a1655175 to your computer and use it in GitHub Desktop.
Save catehstn/6fc1a9ab7388a1655175 to your computer and use it in GitHub Desktop.
Android create one color image
/**
* A one color image.
* @param width
* @param height
* @param color
* @return A one color image with the given width and height.
*/
public static Bitmap createImage(int width, int height, int color) {
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint();
paint.setColor(color);
canvas.drawRect(0F, 0F, (float) width, (float) height, paint);
return bitmap;
}
@AFFogarty
Copy link

What's the license on this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment