aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Blurhash
Commit message (Collapse)AuthorAgeFilesLines
* fix(GenerateBlurhashMetadata): Suppress imagescale errorsumgfoin2025-03-121-1/+1
| | | | | | | | | | | | Suppress errors in imagescale during file-scans: Most of these errors are caused by out of range x/y-dims. Triggering un unhandled exception, metadata-generation aborts at this point (e.g. occ files:scan --generate-metadata), effectively preventing these images from being added to photos or maps. This problem might be the root cause for an issue described here: https://github.com/nextcloud/photos/issues/2768 Signed-off-by: umgfoin <umgfoin@users.noreply.github.com>
* fix(performance): use low resolution for blurhashfix/low-res-for-blurhashMax2025-01-281-1/+1
| | | | | | | | Improve blurhash performance by using a low res image. The results are hard to destinguish visualy. It is a **blur** hash after all. Signed-off-by: Max <max@nextcloud.com>
* style: update codestyle for coding-standard 1.2.3Daniel Kesselberg2024-08-251-1/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* fix: don't persist previews used during blurhash generationRichard Steinmetz2024-07-301-19/+4
| | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
* chore: Add SPDX headerAndy Scherzinger2024-05-241-19/+2
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* fix(Blurhash): Suppress imagecreatefromstring() E_WARNINGJosh2024-04-061-2/+2
| | | | | | | We're already checking return value to determine if the format is unrecognized. There's no reason to let imagecreatefromstring() generate it's own E_WARNING when the format is unrecognized. Fixes #44702 Signed-off-by: Josh <josh.t.richards@gmail.com>
* feat(metadata): get deprecated status using file etagMaxence Lange2024-03-071-2/+8
| | | Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
* blurhash generationMaxence Lange2024-01-051-0/+164
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>