Don't resize

merge-requests/30/head
Bob Mottram 2021-08-13 19:06:01 +01:00
parent 714ec65e34
commit ed1a17f4bd
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ def _convertImageToLowBandwidth(imageFilename: str) -> None:
"""
lowBandwidthFilename = imageFilename + '.low'
cmd = \
'/usr/bin/convert -resize 50% +noise Multiplicative ' + \
'/usr/bin/convert +noise Multiplicative ' + \
'-evaluate median 10% -dither Floyd-Steinberg ' + \
'-monochrome ' + imageFilename + ' ' + lowBandwidthFilename
print('Low bandwidth image conversion: ' + cmd)