-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmirror_concat_img.py
66 lines (60 loc) · 2.7 KB
/
mirror_concat_img.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
"""
Скрипт, добавляющий справа от изображений их зеркальную копию.
"""
# pylint: disable=import-error, duplicate-code
import os
import sys
import argparse
import logging
from tkinter.filedialog import askopenfilenames
from concurrent.futures import ThreadPoolExecutor, as_completed
from i18n import t
import PIL.Image
import PIL.ImageTk
from tqdm import tqdm
from tqdm.contrib.logging import logging_redirect_tqdm
from main import init_app, SUPPORTED_EXTENSIONS
from helper_funcs import mirror_concat_img
def execute_mirror_concat(img_paths: list[str]) -> str | int:
"""
Добавление справа от изображений их отзеркаленных версий и сохранение вместо начальных.
:param img_paths: Пути к изображениям.
:return: Код ошибки или строка с ошибкой.
"""
if len(img_paths) < 1:
return os.EX_OK
with logging_redirect_tqdm():
pbar = tqdm(total=len(img_paths), desc=t("main.files"))
with ThreadPoolExecutor() as executor:
future_images = {executor.submit(mirror_concat_file, img_path): img_path for img_path in
img_paths}
for future in as_completed(future_images):
img_path = future_images[future]
pbar.set_postfix_str(img_path)
try:
future.result()
except PIL.UnidentifiedImageError:
logging.info(t("main.file_not_image"), img_path)
except OSError as e:
logging.info(t("main.exception"), img_path)
logging.info(e)
finally:
pbar.update(1)
pbar.set_postfix_str("")
pbar.close()
return os.EX_OK
def mirror_concat_file(file_path: str):
"""
Попытка отзеркаливания одного изображения без обработки исключений.
:param file_path: Путь к файлу.
"""
return mirror_concat_img(PIL.Image.open(file_path))
if __name__ == "__main__":
init_app("images/Pillows_Hat_Icon.tga")
parser = argparse.ArgumentParser(prog=t("main.mirror_concat_img_name"),
description=t("main.mirror_concat_img_name"))
parser.add_argument("img_paths", nargs="*", default=[], help=t("main.image_files"))
args = parser.parse_args()
sys.exit(execute_mirror_concat(askopenfilenames(title=t("main.select_image_files"), filetypes=[(
t("main.image_files"), ["*" + ext for ext in SUPPORTED_EXTENSIONS])]) if len(
args.img_paths) < 1 else args.img_paths))