mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 14:11:00 +00:00
Generate icons for name only
This commit is contained in:
parent
01de8b2cd4
commit
a1679e9ac4
1 changed files with 8 additions and 5 deletions
|
@ -514,12 +514,15 @@ public class ContactInfo {
|
||||||
|
|
||||||
// Generated
|
// Generated
|
||||||
boolean identicon = false;
|
boolean identicon = false;
|
||||||
if (info.bitmap == null && generated && !TextUtils.isEmpty(info.email)) {
|
String name = address.getPersonal();
|
||||||
|
String tag = (TextUtils.isEmpty(info.email) ? name : info.email);
|
||||||
|
String etag = (TextUtils.isEmpty(info.email) ? Helper.sanitizeFilename(name + "@name") : ekey);
|
||||||
|
if (info.bitmap == null && generated && !TextUtils.isEmpty(tag)) {
|
||||||
File dir = Helper.ensureExists(new File(context.getFilesDir(), "generated"));
|
File dir = Helper.ensureExists(new File(context.getFilesDir(), "generated"));
|
||||||
File[] files = dir.listFiles(new FilenameFilter() {
|
File[] files = dir.listFiles(new FilenameFilter() {
|
||||||
@Override
|
@Override
|
||||||
public boolean accept(File file, String name) {
|
public boolean accept(File file, String name) {
|
||||||
return name.startsWith(ekey);
|
return name.startsWith(etag);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (files != null && files.length == 1) {
|
if (files != null && files.length == 1) {
|
||||||
|
@ -532,16 +535,16 @@ public class ContactInfo {
|
||||||
if (identicons) {
|
if (identicons) {
|
||||||
identicon = true;
|
identicon = true;
|
||||||
info.bitmap = ImageHelper.generateIdenticon(
|
info.bitmap = ImageHelper.generateIdenticon(
|
||||||
info.email, dp, 5, context);
|
tag, dp, 5, context);
|
||||||
info.type = "identicon";
|
info.type = "identicon";
|
||||||
} else {
|
} else {
|
||||||
info.bitmap = ImageHelper.generateLetterIcon(
|
info.bitmap = ImageHelper.generateLetterIcon(
|
||||||
info.email, address.getPersonal(), dp, context);
|
tag, address.getPersonal(), dp, context);
|
||||||
info.type = "letter";
|
info.type = "letter";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add to cache
|
// Add to cache
|
||||||
File output = new File(dir, ekey + "." + info.type);
|
File output = new File(dir, etag + "." + info.type);
|
||||||
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(output))) {
|
try (OutputStream os = new BufferedOutputStream(new FileOutputStream(output))) {
|
||||||
info.bitmap.compress(Bitmap.CompressFormat.PNG, 90, os);
|
info.bitmap.compress(Bitmap.CompressFormat.PNG, 90, os);
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
|
|
Loading…
Reference in a new issue