代替としてStoreで管理するように

This commit is contained in:
r-ca 2024-01-23 02:57:36 +09:00
parent ed5e699493
commit 0b2d58470b
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 9 additions and 1 deletions

View File

@ -22,6 +22,7 @@ import dagger.assisted.AssistedInject;
import one.nem.lacerta.source.file.FileManager;
import one.nem.lacerta.utils.LacertaLogger;
import one.nem.lacerta.utils.Store;
public class FileManagerImpl implements FileManager {
@ -303,7 +304,7 @@ public class FileManagerImpl implements FileManager {
private void saveBitmapInternal(Bitmap bitmap, Path path) throws IOException {
try {
logger.debug("saveBitmapInternal", "path: " + path);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, Files.newOutputStream(path));
bitmap.compress(Bitmap.CompressFormat.PNG, Store.Scan.PNG_QUALITY, Files.newOutputStream(path));
} catch (Exception e) {
logger.error("saveBitmapInternal", e.getMessage());
throw new IOException("Failed to save bitmap");

View File

@ -0,0 +1,7 @@
package one.nem.lacerta.utils;
public class Store {
public class Scan {
public static final int PNG_QUALITY = 60;
}
}