circleCrop not working on drawable resource
- Dominant language
- Java
- Stars
- 35k
- Forks
- 6.2k
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 8
Description
**Glide Version**: 4.11.0
**Integration libraries**: No
**Device/Android Version**: Emulator API 21 and 22
**Issue details / Repro steps / Use case background**: `circleCrop()` seems to work when images are from the server, but not when using local drawable resource.
**Glide load line / `GlideModule` (if any) / list Adapter code (if any)**:
```java
//Working
GlideApp.with(this)
.load("some image url")
.placeholder(R.mipmap.ic_launcher_round)
.error(R.mipmap.ic_launcher_round)
.circleCrop()
.into(assetIcon)
//Not Working
Glide.with(this)
.load(R.drawable.ic_camera)
.circleCrop()
.into(userImage)
```
**Layout XML**:
```xml
//Layout on first sample
//Layout on second sample
```
```ruby
paste stack trace and/or log here
```

Contributor guide
Assessment
This issue has not been assessed yet.