diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2026-06-11 21:41:28 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2026-06-11 21:41:28 -0700 |
| commit | e070ae72e99d43654ee62105f9f4319cefb18687 (patch) | |
| tree | 95b00bf0313a9fbf72ba988f000307395cb8972a | |
| parent | 32847faf25a59a63c8530e71b26df81c625b756c (diff) | |
| download | imgutil-e070ae72e99d43654ee62105f9f4319cefb18687.tar.zst | |
Increase jpeg output quality
| -rw-r--r-- | convert.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ func run() error { case "gif": err = gif.Encode(outputFile, input, nil) case "jpeg", "jpg": - err = jpeg.Encode(outputFile, input, nil) + err = jpeg.Encode(outputFile, input, &jpeg.Options{Quality: 100}) case "png": err = png.Encode(outputFile, input) case "bmp": |
