Skip to content

Commit 7681bbf

Browse files
committed
Fixes #63 - Update image presets
1 parent ea75899 commit 7681bbf

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* added `wait` option in `YoutubeDownloader` to allow parallelism while using context manager
44
* do not use extension for finding format in `ensure_matches()` in `image.optimization` module
55
* added `VideoWebmHigh` and `VideoMp4High` presets for high quality WebM and Mp4 convertion respectively
6+
* updated presets `WebpHigh`, `JpegMedium`, `JpegLow` and `PngMedium` in `image.presets`
67

78
# 1.3.3
89

src/zimscraperlib/image/presets.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class WebpHigh:
4848

4949
options = {
5050
"lossless": False,
51-
"quality": 60,
51+
"quality": 90,
5252
"method": 6,
5353
}
5454

@@ -136,7 +136,7 @@ class PngMedium:
136136
VERSION = 1
137137

138138
options = {
139-
"reduce_colors": True,
139+
"reduce_colors": False,
140140
"remove_transparency": False,
141141
"fast_mode": False,
142142
}
@@ -169,7 +169,7 @@ class JpegLow:
169169
options = {
170170
"quality": 45,
171171
"keep_exif": False,
172-
"fast_mode": False,
172+
"fast_mode": True,
173173
}
174174

175175

@@ -185,7 +185,7 @@ class JpegMedium:
185185
options = {
186186
"quality": 65,
187187
"keep_exif": False,
188-
"fast_mode": False,
188+
"fast_mode": True,
189189
}
190190

191191

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ def gif_image():
105105

106106
@pytest.fixture(scope="module")
107107
def webp_image():
108-
return file_src("whitewater.webp")
108+
return file_src("ninja.webp")

tests/files/ninja.webp

83.4 KB
Binary file not shown.

tests/files/whitewater.webp

-59.2 KB
Binary file not shown.

tests/image/test_image.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def test_optimize_image_allow_convert(png_image, tmp_path):
333333
[
334334
(WebpLow(), 1, {"lossless": False, "quality": 40, "method": 6}, "webp"),
335335
(WebpMedium(), 1, {"lossless": False, "quality": 50, "method": 6}, "webp"),
336-
(WebpHigh(), 1, {"lossless": False, "quality": 60, "method": 6}, "webp"),
336+
(WebpHigh(), 1, {"lossless": False, "quality": 90, "method": 6}, "webp"),
337337
(
338338
GifLow(),
339339
1,
@@ -382,7 +382,7 @@ def test_optimize_image_allow_convert(png_image, tmp_path):
382382
(
383383
PngMedium(),
384384
1,
385-
{"reduce_colors": True, "remove_transparency": False, "fast_mode": False},
385+
{"reduce_colors": False, "remove_transparency": False, "fast_mode": False},
386386
"png",
387387
),
388388
(
@@ -391,11 +391,11 @@ def test_optimize_image_allow_convert(png_image, tmp_path):
391391
{"reduce_colors": False, "remove_transparency": False, "fast_mode": True},
392392
"png",
393393
),
394-
(JpegLow(), 1, {"quality": 45, "keep_exif": False, "fast_mode": False}, "jpg"),
394+
(JpegLow(), 1, {"quality": 45, "keep_exif": False, "fast_mode": True}, "jpg"),
395395
(
396396
JpegMedium(),
397397
1,
398-
{"quality": 65, "keep_exif": False, "fast_mode": False},
398+
{"quality": 65, "keep_exif": False, "fast_mode": True},
399399
"jpg",
400400
),
401401
(JpegHigh(), 1, {"quality": 80, "keep_exif": True, "fast_mode": True}, "jpg"),

0 commit comments

Comments
 (0)