Read bitmap from asset

  Uncategorized
	public static Bitmap readBitmap(AssetManager asset, String fileName) throws IOException
	{
		InputStream in = asset.open(fileName);
		Bitmap bitmap = BitmapFactory.decodeStream(in);
		return bitmap;
	}

Source: http://github.com/