diff options
author | OzoneGrif | 2020-01-29 22:33:55 +0100 |
---|---|---|
committer | GitHub | 2020-01-29 22:33:55 +0100 |
commit | 3ef8c5a3e92dab3178d7892606149fedfaadc31f (patch) | |
tree | 167438937bda9dc321f37a52ff80525cbd96bfbd /compiler/src/Compiler.hs | |
parent | e91065602eeeebef236dae29e67d8e3334ab4029 (diff) | |
parent | c8692be41903791764de314c099ead7f078eed20 (diff) | |
download | ldgallery-3ef8c5a3e92dab3178d7892606149fedfaadc31f.tar.gz |
Merge pull request #50 from pacien/feature-imagemagick
compiler: switch to imagemagick
Diffstat (limited to 'compiler/src/Compiler.hs')
-rw-r--r-- | compiler/src/Compiler.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/src/Compiler.hs b/compiler/src/Compiler.hs index aca96bc..27598b7 100644 --- a/compiler/src/Compiler.hs +++ b/compiler/src/Compiler.hs | |||
@@ -130,9 +130,9 @@ compileGallery inputDirPath outputDirPath rebuildAll = | |||
130 | 130 | ||
131 | itemProcessor config cache = | 131 | itemProcessor config cache = |
132 | itemFileProcessor | 132 | itemFileProcessor |
133 | (pictureMaxResolution config) (jpegExportQuality config) cache | 133 | (pictureMaxResolution config) cache |
134 | inputDirPath outputDirPath itemsDir | 134 | inputDirPath outputDirPath itemsDir |
135 | thumbnailProcessor config cache = | 135 | thumbnailProcessor config cache = |
136 | thumbnailFileProcessor | 136 | thumbnailFileProcessor |
137 | (thumbnailMaxResolution config) (jpegExportQuality config) cache | 137 | (thumbnailMaxResolution config) cache |
138 | inputDirPath outputDirPath thumbnailsDir | 138 | inputDirPath outputDirPath thumbnailsDir |