mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Image config
This commit is contained in:
parent
9a6e099b90
commit
12d7a615de
1 changed files with 9 additions and 0 deletions
|
@ -120,6 +120,8 @@ public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder>
|
|||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
if (options.outColorSpace != null)
|
||||
args.putString("color", options.outColorSpace.getModel().name());
|
||||
if (options.outConfig != null)
|
||||
args.putString("config", options.outConfig.name());
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.w(ex);
|
||||
|
@ -163,6 +165,13 @@ public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder>
|
|||
sb.append(color);
|
||||
}
|
||||
|
||||
String config = args.getString("config");
|
||||
if (config != null) {
|
||||
if (sb.length() > 0)
|
||||
sb.append(' ');
|
||||
sb.append(config);
|
||||
}
|
||||
|
||||
long size = args.getLong("size");
|
||||
if (size > 0) {
|
||||
if (sb.length() > 0)
|
||||
|
|
Loading…
Reference in a new issue