use floyd-steinberg by default

This commit is contained in:
javl
2026-08-15 15:09:18 +02:00
parent 872ed764f5
commit ce4d3ecf98
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -129,9 +129,9 @@
<div class="table-cell"><label for="ditheringMode">Dithering: </label></div>
<div class="table-cell">
<select id="ditheringMode" onchange="updateInteger('ditheringMode')">
<option value="2">Floyd-Steinberg</option>
<option value="0">Binary</option>
<option value="1">Bayer</option>
<option value="2">Floyd-Steinberg</option>
<option value="3">Atkinson</option>
</select>
</div>
+1 -1
View File
@@ -16,7 +16,7 @@ const settings = {
drawMode: 'horizontal',
prefix: '0x',
ditheringThreshold: 128,
ditheringMode: 0,
ditheringMode: 2,
outputFormat: 'plain',
separator: ', ',
outputComments: true,