-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwio.py
335 lines (292 loc) · 12.4 KB
/
wio.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#!/usr/bin/env python3
import multiprocessing
import time
import os
import argparse
import traceback
from PIL import Image
from PIL import ImageOps
from colorama import Fore, Back
# Supported formats
from PIL import JpegImagePlugin
from PIL import PngImagePlugin
from PIL import GifImagePlugin
from PIL import WebPImagePlugin
from PIL import BmpImagePlugin
from PIL import BlpImagePlugin
from PIL import TiffImagePlugin
from pillow_avif import AvifImagePlugin
# Setup Logging
import utils.Logger
import logging
utils.Logger.setup_logging()
log = logging.getLogger(__name__)
#Constants
#version number
VERSION = "1.0"
#welcome message
WELCOME_MESSAGE = f""" ▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄
▐░▌ ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌
▐░▌ ▐░▌ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀█░▌
▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌
▐░▌ ▄ ▐░▌ ▐░▌ ▐░▌ ▐░▌
▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌
▐░▌ ▐░▌░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌
▐░▌▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌
▐░▌░▌ ▐░▐░▌ ▄▄▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄█░▌
▐░░▌ ▐░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌
▀▀ ▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀
Web Image Optimizer
Made with ❤️ by UndyingSoul
GitHub: https://github.com/UndyingSoul/wio
"""
# Supported image formats and their corresponding Pillow plugins
SUPPORTED_FORMATS = {
"jpg": JpegImagePlugin.JpegImageFile,
"jpeg": JpegImagePlugin.JpegImageFile,
"png": PngImagePlugin.PngImageFile,
"gif": GifImagePlugin.GifImageFile,
"webp": WebPImagePlugin.WebPImageFile,
"bmp": BmpImagePlugin.BmpImageFile,
"tiff": TiffImagePlugin.TiffImageFile,
"avif": AvifImagePlugin.AvifImageFile,
}
human_readable_bools = ('no','yes')
def range_arg_type(astr, min=0, max=100):
value = int(astr)
if min <= value <= max:
return value
else:
raise argparse.ArgumentTypeError(f"value not in range {min}-{max}")
def size_of_file_fmt(num, suffix="B"):
for unit in ("", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei", "Zi"):
if abs(num) < 1024.0:
return f"{num:3.1f} {unit}{suffix}"
num /= 1024.0
return f"{num:.1f} Yi{suffix}"
def generate_output_path(input_path, format, keep_originals, save_as_original_format):
directory, filename = os.path.split(input_path)
filename, ext = os.path.splitext(filename)
if save_as_original_format:
new_ext = ext if not keep_originals else "_wio" + ext
else:
new_ext = + ext
output_path = os.path.join(directory, filename + new_ext)
return output_path
# Function to convert an image to the specified format and quality
def convert_image(input_path, output_path, format, quality, keep_metadata, keep_originals, save_as_original_format, resize):
log.debug(f"Converting image {input_path}")
try:
with Image.open(input_path) as img:
img = ImageOps.exif_transpose(img) # Fix orientation if applicable
if resize:
width, height = img.size
new_width = int(width * (quality / 100))
new_height = int(height * (quality / 100))
img = img.resize((new_width, new_height), Image.LANCZOS)
# Dumb workaround that avif requires subsampling to be a string and not an int. Makes no sense to me
if (format == "avif"):
resize_subsampling = "4:2:0"
else:
resize_subsampling = 0
exif_data = img.info.get('exif') # Get exif data
exif_kwargs = {'exif': exif_data} if exif_data and keep_metadata else {}
if save_as_original_format:
output_path = generate_output_path(input_path, format, keep_originals, save_as_original_format)
if resize:
img.save(output_path, format=format, quality=95, subsampling=resize_subsampling, **exif_kwargs)
else:
img.save(output_path, format=format, quality=quality, **exif_kwargs)
return True
except Exception as e:
log.error(f"Could not convert {input_path}")
log.debug(e)
log.debug(traceback.format_exc())
return False
# Function to process a single image file
def process_file(file_path, format, quality, keep_originals, keep_metadata, index, total, resize):
directory, filename = os.path.split(file_path)
filename, ext = os.path.splitext(filename)
save_as_original_format = False
if format == "original":
save_as_original_format = True
format = ext[1:]
if format == "jpg":
format = "jpeg" # dumb, but necessary edge case
output_path = generate_output_path(file_path, format, keep_originals, save_as_original_format)
if not format:
log.critical(f"Invalid extension for file {output_path}")
return
else:
output_path = os.path.join(directory, filename + "." + format)
file_path_size = os.stat(file_path).st_size
if convert_image(file_path, output_path, format, quality, keep_metadata, keep_originals, save_as_original_format, resize):
output_path_size = os.stat(output_path).st_size
space_saved_percent = int((1-(output_path_size/file_path_size))*100)
space_saved = f"({space_saved_percent}% smaller)" if space_saved_percent > -1 else f"{Fore.BLACK}{Back.WHITE}({abs(space_saved_percent)}% larger){Fore.RESET}{Back.RESET}"
if not keep_originals and not save_as_original_format: # Optionally delete the original file
log.info(f"Deleting file {file_path}")
os.remove(file_path)
log.info(f"{index+1}/{total} ({int(((index+1)/total)*100)}%) - Converted {file_path}[{size_of_file_fmt(file_path_size)}] to {output_path}[{size_of_file_fmt(output_path_size)}] {space_saved}")
def log_progress_short(index, total, file_path):
log.info(
f"{index+1}/{total} ({int(((index+1)/total)*100)}%) Will convert {file_path} [{size_of_file_fmt(os.stat(file_path).st_size)}]"
)
def run_conversion_async(file_list, args):
tasks = []
if args.dry_run:
with multiprocessing.Pool() as pool:
pool.starmap(
log_progress_short,
[
(index, len(file_list), file_path)
for index, file_path in enumerate(file_list)
],
)
else:
with multiprocessing.Pool() as pool:
pool.starmap(
process_file,
[
(file_path, args.format, args.quality, args.keep_originals, args.keep_metadata, index, len(file_list), args.resize)
for index, file_path in enumerate(file_list)
],
)
def run_conversion(file_list, args):
for index, file_path in enumerate(file_list):
if args.dry_run:
log.info(f"{index+1}/{len(file_list)} ({int(((index+1)/len(file_list))*100)}%) Will convert {file_path} [{size_of_file_fmt(os.stat(file_path).st_size)}]")
else:
process_file(file_path, args.format, args.quality, args.keep_originals, args.keep_metadata, index, len(file_list), resize=args.resize)
# Main function that handles command line arguments and orchestrates the conversion process
def main():
# Arguments
parser = argparse.ArgumentParser(description=f"This script converts and optimizes images for the web",
epilog="https://github.com/UndyingSoul/wio for examples")
parser.add_argument(
'--version',
'-v',
action='version',
version=f"{parser.prog} v.{VERSION}",
)
parser.add_argument(
"input_paths",
nargs="+",
help="Input file(s) or directory(s)",
)
parser.add_argument(
"--extensions",
"-e",
nargs="*",
choices=SUPPORTED_FORMATS,
metavar="ext",
default=["jpg", "jpeg", "png", "gif"],
help="File extensions to convert",
)
parser.add_argument(
"--format",
"-f",
choices=["webp", "avif", "original"],
default="avif",
help="Format to convert the images to",
)
parser.add_argument(
"--quality",
"-q",
type=range_arg_type,
metavar="[0-100]",
default=70,
help="Quality of the conversion (0-100)",
)
parser.add_argument(
"--resize",
"-r",
action="store_true",
help="Resize images instead of optimizing them",
)
parser.add_argument(
"--keep-originals",
"-o",
action="store_true",
help="Keep original files after conversion",
)
parser.add_argument(
"--keep-metadata",
"-m",
action="store_true",
help="Keep metadata on the converted images",
)
parser.add_argument(
"--async",
"-a",
action="store_true",
dest="is_async",
help="Perform asynchronous conversion of images (unreliable progress bar)",
)
parser.add_argument(
"--dry-run",
"-d",
action="store_true",
help="Do a dry run (no images converted)",
)
args = parser.parse_args()
log.debug(f"Input Paths: {args.input_paths}")
log.debug(f"Extensions: {args.extensions}")
print(WELCOME_MESSAGE)
# Register additional image format encoders and decoders
if args.format == "webp":
Image.register_encoder("webp", WebPImagePlugin.WebPImageFile)
Image.register_decoder("webp", WebPImagePlugin.WebPImageFile)
if args.format == "avif":
Image.register_encoder("avif", AvifImagePlugin.AvifImageFile)
Image.register_decoder("avif", AvifImagePlugin.AvifImageFile)
if args.format == "original":
pass
# Create a list of image files to be converted
file_list = []
for path in args.input_paths:
if os.path.isdir(path):
log.debug(f"{path} is directory, finding files in directory")
for root, _, files in os.walk(path):
for file in files:
if any(file.lower().endswith(ext) for ext in args.extensions):
log.debug(f"File found {os.path.join(root, file)}")
file_list.append(os.path.join(root, file))
elif os.path.isfile(path) and any(path.lower().endswith(ext) for ext in args.extensions):
log.debug(f"{path} is file")
file_list.append(path)
else:
log.error(f"Unsupported image or directory {path}")
if not file_list:
log.error("No valid files specified. Exiting.")
raise SystemExit(0)
log.info(f"Converting {len(file_list)} files to the following parameters\n" +
f" * Format: {args.format}\n" +
f" * Quality: {args.quality}%\n" +
f" * Resize Images: {human_readable_bools[args.resize]}\n" +
f" * Keeping Originals: {human_readable_bools[args.keep_originals]}\n" +
f" * Keeping Metadata: {human_readable_bools[args.keep_metadata]}\n" +
f" * Dry Run: {human_readable_bools[args.dry_run]}")
log.log(logging.HEADER, "File Conversion")
start_time = time.time()
# Using the --async flag to perform asynchronous conversion
try:
if args.is_async:
log.info("Performing asynchronous conversion.")
run_conversion_async(file_list, args)
else:
log.info("Performing sequential conversion.")
run_conversion(file_list, args)
except KeyboardInterrupt:
log.warning("Keyboard Interrupt detected. Exiting.")
raise SystemExit(1)
except Exception as e:
log.critical("A critical error occurred while processing images. Exiting.")
log.debug(e)
log.debug(traceback.format_exc())
pass
seconds = time.time() - start_time
timer = f"Time Taken: {time.strftime('%H:%M:%S', time.gmtime(seconds))}" if start_time else ""
log.log(logging.COMPLETION, f"Done. {timer}")
if __name__ == "__main__":
main()