Enabled anti aliasing for generated icons

pull/206/head
M66B 3 years ago
parent 6048216fd4
commit 8e05ebff7b

@ -136,6 +136,7 @@ class ImageHelper {
int bg = Color.HSVToColor(new float[]{h, s / 100f, v / 100f}); int bg = Color.HSVToColor(new float[]{h, s / 100f, v / 100f});
Paint paint = new Paint(); Paint paint = new Paint();
paint.setAntiAlias(true);
paint.setColor(bg); paint.setColor(bg);
Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888); Bitmap bitmap = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
@ -191,6 +192,7 @@ class ImageHelper {
canvas.drawColor(bg); canvas.drawColor(bg);
Paint paint = new Paint(); Paint paint = new Paint();
paint.setAntiAlias(true);
paint.setColor(lum < t ? Color.WHITE : Color.BLACK); paint.setColor(lum < t ? Color.WHITE : Color.BLACK);
paint.setTextSize(size / 2f); paint.setTextSize(size / 2f);
try { try {

Loading…
Cancel
Save