Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.google.android.gms.common.util;
|
||||
|
||||
import android.database.CharArrayBuffer;
|
||||
import android.graphics.Bitmap;
|
||||
import android.text.TextUtils;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class DataUtils {
|
||||
public static void copyStringToBuffer(String str, CharArrayBuffer charArrayBuffer) {
|
||||
if (TextUtils.isEmpty(str)) {
|
||||
charArrayBuffer.sizeCopied = 0;
|
||||
return;
|
||||
}
|
||||
if (charArrayBuffer.data == null || charArrayBuffer.data.length < str.length()) {
|
||||
charArrayBuffer.data = str.toCharArray();
|
||||
} else {
|
||||
str.getChars(0, str.length(), charArrayBuffer.data, 0);
|
||||
}
|
||||
charArrayBuffer.sizeCopied = str.length();
|
||||
}
|
||||
|
||||
public static byte[] loadImageBytes(Bitmap bitmap) {
|
||||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
||||
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
|
||||
return byteArrayOutputStream.toByteArray();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user