falhassen

Results 11 issues of falhassen

I'm not sure what's wrong with the config, but I submitted a PR (https://github.com/bumptech/glide/pull/5357) that broke `DownsamplerEmulatorTest` for SDK < 34, but it was able to be merged with no...

We need to update the remainder of TransformationUtils (i.e., not rotateImageExif which was handled in https://github.com/bumptech/glide/issues/5333) to remove usage of BitmapPool and use Bitmap.create to create Bitmaps. See https://github.com/bumptech/glide/pull/5334/ for...

There is an AOSP bug in the original Android U release in https://android.googlesource.com/platform/frameworks/base/+/master/libs/hwui/HardwareBitmapUploader.cpp where single-channel bitmaps are initialized with the wrong GL enum (`GL_R8` instead of `GL_RGBA`, introduced in https://cs.android.com/android/_/android/platform/frameworks/base/+/a008aa9c85bc136daefc4e056d88008cc4f55781:libs/hwui/HardwareBitmapUploader.cpp;dlc=4207fcf360998d0c6717f430c00aab13e5de80b9),...

I apologize for the lack of a proper write-up, but I observed a large increase in memory allocation when using ImageDecoder to decode images instead of Bitmap factory. github won't...

ExifInterfaceImageHeaderParser uses androidx's ExifInterface, which supports the HEIF format on OMR1+. Glide's {@link DefaultImageHeaderParser} doesn't currently support HEIF. We should reconcile these two classes.

### Description Calling https://developer.android.com/reference/android/graphics/Bitmap#createBitmap(android.graphics.Bitmap,%20int,%20int,%20int,%20int,%20android.graphics.Matrix,%20boolean) in a unit test with a non-matrix will produce an output Bitmap that loses the gainmap. ### Steps to Reproduce Write a test like ``` import...

As per https://central.sonatype.org/faq/what-is-different-between-central-portal-and-legacy-ossrh/#self-service-migration, OSSRH is closing down June 30, 2025. Unfortunately, there is no official Grade support for Central (https://central.sonatype.org/publish/publish-portal-gradle/), so this will be a nontrivial amount of work to...

The recent Compose library changes have broken behaviors. There are [many bugs that have been reported in 2024](https://github.com/bumptech/glide/issues?q=is%3Aissue%20state%3Aopen%20%20compose), some of which I will mention here: - #5418 - #5498 -...

We should not be allocating software bitmaps unless absolutely necessary. We should probably pool them as well.