Image config

pull/194/merge
M66B 4 years ago
parent 9a6e099b90
commit 12d7a615de

@ -120,6 +120,8 @@ public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder>
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (options.outColorSpace != null) if (options.outColorSpace != null)
args.putString("color", options.outColorSpace.getModel().name()); args.putString("color", options.outColorSpace.getModel().name());
if (options.outConfig != null)
args.putString("config", options.outConfig.name());
} }
} catch (Throwable ex) { } catch (Throwable ex) {
Log.w(ex); Log.w(ex);
@ -163,6 +165,13 @@ public class AdapterImage extends RecyclerView.Adapter<AdapterImage.ViewHolder>
sb.append(color); 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"); long size = args.getLong("size");
if (size > 0) { if (size > 0) {
if (sb.length() > 0) if (sb.length() > 0)

Loading…
Cancel
Save