Introduction
Introduction Statistics Contact Development Disclaimer Help
tChange resampling filter to Lanczos - andersdamsgaard.com - my photography web…
git clone git://src.adamsgaard.dk/andersdamsgaard.com
Log
Files
Refs
Submodules
README
LICENSE
---
commit a962c32f4a69536dffc17594c32578c3429bcbd4
parent 782f3390da2caf34228c759d32adc5eb66ba8f1c
Author: Anders Damsgaard <[email protected]>
Date: Sun, 4 Nov 2018 20:58:00 +0100
Change resampling filter to Lanczos
Diffstat:
M config.toml | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
---
diff --git a/config.toml b/config.toml
t@@ -10,7 +10,17 @@ theme = "tale-mod"
# Default resample filter used for resizing. Default is Box,
# a simple and fast averaging filter appropriate for downscaling.
# See https://github.com/disintegration/imaging
-resampleFilter = "box"
+# NearestNeighbor: Fastest resampling filter, no antialiasing.
+# Box: Simple and fast averaging filter appropriate for downscaling.
+# When upscaling it's similar to NearestNeighbor.
+# Linear: Bilinear filter, smooth and reasonably fast.
+# MitchellNetravali: А smooth bicubic filter.
+# CatmullRom: A sharp bicubic filter.
+# Gaussian: uses gaussian function, useful for noise removal.
+# Lanczos: High-quality resampling filter for photographic images yielding
+# sharp results, slower than cubic filters.
+#resampleFilter = "box"
+resampleFilter = "Lanczos"
# Defatult JPEG quality setting. Default is 75.
quality = 90
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.