From f8359e791531c874ac53c241b6608d0e6fe0e117 Mon Sep 17 00:00:00 2001 From: celogeek <65178+celogeek@users.noreply.github.com> Date: Tue, 27 Dec 2022 14:43:36 +0100 Subject: [PATCH] rise default quality --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f2c4327..6f6798b 100644 --- a/main.go +++ b/main.go @@ -65,7 +65,7 @@ func main() { flag.StringVar(&opt.Profile, "profile", "", fmt.Sprintf("Profile to use: %s", strings.Join(availableProfiles, ", "))) flag.StringVar(&opt.Author, "author", "GO Comic Converter", "Author of the epub") flag.StringVar(&opt.Title, "title", "", "Title of the epub") - flag.IntVar(&opt.Quality, "quality", 75, "Quality of the image: Default 75") + flag.IntVar(&opt.Quality, "quality", 85, "Quality of the image: Default 75") flag.Parse() if opt.Input == "" || opt.Output == "" {