image: reduce save space cover size
This gets the image storage size down to like 8 megs on my library, seems solid enough.
This commit is contained in:
parent
25ca3e3046
commit
64ce312976
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ constructor(private val imageSettings: ImageSettings, private val identifier: Co
|
||||||
override suspend fun create(context: Context, revision: UUID): MutableCovers =
|
override suspend fun create(context: Context, revision: UUID): MutableCovers =
|
||||||
when (imageSettings.coverMode) {
|
when (imageSettings.coverMode) {
|
||||||
CoverMode.OFF -> NullCovers(context, identifier)
|
CoverMode.OFF -> NullCovers(context, identifier)
|
||||||
CoverMode.SAVE_SPACE -> siloedCovers(context, revision, CoverParams.of(750, 70))
|
CoverMode.SAVE_SPACE -> siloedCovers(context, revision, CoverParams.of(500, 70))
|
||||||
CoverMode.BALANCED -> siloedCovers(context, revision, CoverParams.of(750, 85))
|
CoverMode.BALANCED -> siloedCovers(context, revision, CoverParams.of(750, 85))
|
||||||
CoverMode.HIGH_QUALITY -> siloedCovers(context, revision, CoverParams.of(1000, 100))
|
CoverMode.HIGH_QUALITY -> siloedCovers(context, revision, CoverParams.of(1000, 100))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue