From b6cf75b197b278083af1a7c94b54cb05b5c4b600 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Thu, 16 Sep 2021 16:04:58 -0400 Subject: [PATCH] Switch to 200 DPI and JPEG as defaults for image output --- strange_eons_to_arkhamdb.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/strange_eons_to_arkhamdb.js b/strange_eons_to_arkhamdb.js index eb99bb2..8946fad 100644 --- a/strange_eons_to_arkhamdb.js +++ b/strange_eons_to_arkhamdb.js @@ -4,9 +4,9 @@ importClass(java.io.FileWriter); importPackage(arkham.project); // The resolution (in pixels per inch) of the exported images -const RESOLUTION = 300; +const RESOLUTION = 200; // The extension of the image file format to use, e.g., png, jpg -const FORMAT = ImageUtils.FORMAT_PNG; +const FORMAT = ImageUtils.FORMAT_JPEG; // TODO: should be defined in strange eons somewhere const pack_code = "kyo_player";