fix: ImageBlurUtil.kt

- 블러 radius 160 -> 200
This commit is contained in:
Klaus 2025-08-21 21:10:35 +09:00
parent 7355949c1e
commit 7dd585c3dd
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ object ImageBlurUtil {
* @param parallel true면 / 패스를 병렬 실행(ForkJoinPool). 멀티코어에서만 유효.
* @return 블러된 이미지 (TYPE_INT_ARGB)
*/
fun blurFast(src: BufferedImage, radius: Int = 160, parallel: Boolean = true): BufferedImage {
fun blurFast(src: BufferedImage, radius: Int = 200, parallel: Boolean = true): BufferedImage {
require(radius > 0) { "radius must be > 0" }
// 1) 프리멀티 알파로 변환 (경계 품질↑)