2021-01-10 23:37:09 +01:00
|
|
|
/* Copyright (C) 2017-2021 Frank Slezak
|
2017-09-19 13:24:31 +02:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published
|
|
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Gadgetbridge is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
package nodomain.freeyourgadget.gadgetbridge.util;
|
|
|
|
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Canvas;
|
2021-04-20 09:55:27 +02:00
|
|
|
import android.graphics.ColorMatrix;
|
|
|
|
import android.graphics.ColorMatrixColorFilter;
|
|
|
|
import android.graphics.Paint;
|
2021-06-20 14:17:18 +02:00
|
|
|
import android.graphics.PorterDuff;
|
|
|
|
import android.graphics.PorterDuffXfermode;
|
|
|
|
import android.graphics.Rect;
|
|
|
|
import android.graphics.RectF;
|
2017-09-19 13:24:31 +02:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
|
|
|
|
public class BitmapUtil {
|
2021-06-20 14:17:18 +02:00
|
|
|
/**
|
|
|
|
* Downscale a bitmap to a maximum resolution. Doesn't scale if the bitmap is already smaller than the max resolution.
|
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* @param maxWidth
|
|
|
|
* @param maxHeight
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static Bitmap scaleWithMax(Bitmap bitmap, int maxWidth, int maxHeight) {
|
|
|
|
// Scale image only if necessary
|
|
|
|
if ((bitmap.getWidth() > maxWidth) || (bitmap.getHeight() > maxHeight)) {
|
|
|
|
bitmap = Bitmap.createScaledBitmap(bitmap, maxWidth, maxHeight, true);
|
|
|
|
}
|
|
|
|
return bitmap;
|
|
|
|
}
|
2017-09-19 13:24:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a Bitmap from any given Drawable.
|
|
|
|
*
|
|
|
|
* Note that this code will fail if the drawable is 0x0.
|
|
|
|
*
|
|
|
|
* @param drawable A Drawable to convert.
|
|
|
|
* @return A Bitmap representing the drawable.
|
|
|
|
*/
|
|
|
|
public static Bitmap convertDrawableToBitmap(Drawable drawable) {
|
|
|
|
// If whoever made this drawable decided to be nice to us...
|
|
|
|
if (drawable instanceof BitmapDrawable) {
|
|
|
|
return ((BitmapDrawable) drawable).getBitmap();
|
|
|
|
}
|
|
|
|
|
|
|
|
Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
|
|
|
|
Canvas canvas = new Canvas(bitmap);
|
|
|
|
|
|
|
|
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
|
|
|
|
drawable.draw(canvas);
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
2021-04-20 09:55:27 +02:00
|
|
|
|
2021-06-20 14:17:18 +02:00
|
|
|
/**
|
|
|
|
* Converts the provided Bitmap to grayscale.
|
|
|
|
*
|
|
|
|
* @param bitmap
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static Bitmap convertToGrayscale(Bitmap bitmap) {
|
|
|
|
Canvas c = new Canvas(bitmap);
|
|
|
|
Paint paint = new Paint();
|
|
|
|
ColorMatrix cm = new ColorMatrix();
|
|
|
|
cm.setSaturation(0);
|
|
|
|
ColorMatrixColorFilter f = new ColorMatrixColorFilter(cm);
|
|
|
|
paint.setColorFilter(f);
|
|
|
|
c.drawBitmap(bitmap, 0, 0, paint);
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
2021-04-20 09:55:27 +02:00
|
|
|
/**
|
|
|
|
* Change the contrast and brightness on a Bitmap
|
|
|
|
*
|
|
|
|
* Code from: https://stackoverflow.com/questions/12891520/how-to-programmatically-change-contrast-of-a-bitmap-in-android#17887577
|
|
|
|
*
|
|
|
|
* @param bmp input bitmap
|
|
|
|
* @param contrast 0..10 1 is default
|
|
|
|
* @param brightness -255..255 0 is default
|
|
|
|
* @return new bitmap
|
|
|
|
*/
|
|
|
|
public static Bitmap changeBitmapContrastBrightness(Bitmap bmp, float contrast, float brightness)
|
|
|
|
{
|
|
|
|
ColorMatrix cm = new ColorMatrix(new float[]
|
|
|
|
{
|
|
|
|
contrast, 0, 0, 0, brightness,
|
|
|
|
0, contrast, 0, 0, brightness,
|
|
|
|
0, 0, contrast, 0, brightness,
|
|
|
|
0, 0, 0, 1, 0
|
|
|
|
});
|
|
|
|
|
|
|
|
Bitmap ret = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), bmp.getConfig());
|
|
|
|
|
|
|
|
Canvas canvas = new Canvas(ret);
|
|
|
|
|
|
|
|
Paint paint = new Paint();
|
|
|
|
paint.setColorFilter(new ColorMatrixColorFilter(cm));
|
|
|
|
canvas.drawBitmap(bmp, 0, 0, paint);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-06-20 14:17:18 +02:00
|
|
|
|
2021-07-16 15:11:45 +02:00
|
|
|
/**
|
|
|
|
* Invert the colors of a Bitmap
|
|
|
|
*
|
|
|
|
* @param bmp input bitmap
|
|
|
|
* @return new bitmap
|
|
|
|
*/
|
|
|
|
public static Bitmap invertBitmapColors(Bitmap bmp)
|
|
|
|
{
|
|
|
|
ColorMatrix colorMatrix_Inverted =
|
|
|
|
new ColorMatrix(new float[] {
|
|
|
|
-1, 0, 0, 0, 255,
|
|
|
|
0, -1, 0, 0, 255,
|
|
|
|
0, 0, -1, 0, 255,
|
|
|
|
0, 0, 0, 1, 0});
|
|
|
|
|
|
|
|
Bitmap ret = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), bmp.getConfig());
|
|
|
|
|
|
|
|
Canvas canvas = new Canvas(ret);
|
|
|
|
|
|
|
|
Paint paint = new Paint();
|
|
|
|
paint.setColorFilter(new ColorMatrixColorFilter(colorMatrix_Inverted));
|
|
|
|
canvas.drawBitmap(bmp, 0, 0, paint);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-20 14:17:18 +02:00
|
|
|
/**
|
|
|
|
* Crops a circular image from the center of the provided Bitmap.
|
|
|
|
* From: https://www.tutorialspoint.com/android-how-to-crop-circular-area-from-bitmap
|
|
|
|
* @param srcBitmap
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
public static Bitmap getCircularBitmap(Bitmap srcBitmap) {
|
|
|
|
// Calculate the circular bitmap width with border
|
|
|
|
int squareBitmapWidth = Math.min(srcBitmap.getWidth(), srcBitmap.getHeight());
|
|
|
|
// Initialize a new instance of Bitmap
|
|
|
|
Bitmap dstBitmap = Bitmap.createBitmap (
|
|
|
|
squareBitmapWidth, // Width
|
|
|
|
squareBitmapWidth, // Height
|
|
|
|
Bitmap.Config.ARGB_8888 // Config
|
|
|
|
);
|
|
|
|
Canvas canvas = new Canvas(dstBitmap);
|
|
|
|
// Initialize a new Paint instance
|
|
|
|
Paint paint = new Paint();
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
Rect rect = new Rect(0, 0, squareBitmapWidth, squareBitmapWidth);
|
|
|
|
RectF rectF = new RectF(rect);
|
|
|
|
canvas.drawOval(rectF, paint);
|
|
|
|
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
|
|
|
|
// Calculate the left and top of copied bitmap
|
|
|
|
float left = (squareBitmapWidth-srcBitmap.getWidth())/2;
|
|
|
|
float top = (squareBitmapWidth-srcBitmap.getHeight())/2;
|
|
|
|
canvas.drawBitmap(srcBitmap, left, top, paint);
|
|
|
|
// Free the native object associated with this bitmap.
|
|
|
|
srcBitmap.recycle();
|
|
|
|
// Return the circular bitmap
|
|
|
|
return dstBitmap;
|
|
|
|
}
|
2017-09-19 13:24:31 +02:00
|
|
|
}
|