在构建服务器收到的通知时,我正在尝试裁剪图像。目前我只有图片网址。
这是我尝试过的:
Coil.load(context, remoteMessage.getImageUrl()) {
target { image ->
transformations(CircleCropTransformation())
val person = Person.Builder()
.setName(remoteMessage.getTitle())
.setIcon(IconCompat.createWithBitmap(image.toBitmap()))
.build()
...
它加载图像但不裁剪它。