HEIC import, reimplement image change system

This commit is contained in:
2024-01-04 19:13:53 +01:00
parent 22920ad712
commit 66e4023b7a
18 changed files with 188 additions and 457 deletions

View File

@@ -0,0 +1,10 @@
import os
class Images:
def __init__(self) -> None:
pass
def get_images_from_folder(self, URI: str) -> list:
items = os.listdir(URI)
items.sort()
return items