This commit is contained in:
2026-01-21 11:09:46 +01:00
parent 23342c2fa7
commit 9736f5e5e3
1939 changed files with 392 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 867 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

41
apply_green_screen.py Normal file
View File

@@ -0,0 +1,41 @@
import os
from PIL import Image
def add_green_background(image_path):
try:
if not os.path.exists(image_path):
print(f"Skipping {image_path}")
return
# Open image
img = Image.open(image_path).convert("RGBA")
# Create solid green background #00FF00
green_bg = Image.new("RGBA", img.size, (0, 255, 0, 255))
# Composite the image on top of the green background
# This fills transparent areas with green
green_bg.alpha_composite(img)
# Save back (removing alpha channel to make it fully opaque green if desired,
# but maintaining format. Usually "chroma key" implies the background is that color).
# We can save as RGB to discard alpha, ensuring it's solid.
final = green_bg.convert("RGB")
final.save(image_path)
print(f"Updated with Green BG: {image_path}")
except Exception as e:
print(f"Error: {e}")
# Files to process (The ones we just cleaned)
files = [
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/gumb_start.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/merilec_zdravja.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/okvir_zarjavel.png",
"/Users/davidkotnik/repos/novafarma/assets/slike/NOVE_SLIKE/UI/amnezija_maska.png"
]
for f in files:
add_green_background(f)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

0
assets/slike/glavna_referenca/.DS_Store_1 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_10 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_11 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_12 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_13 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_14 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_15 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_16 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_17 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_18 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_19 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_2 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_20 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_21 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_22 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_23 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_24 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_25 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_26 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_27 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_28 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_29 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_3 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_30 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_31 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_32 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_33 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_34 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_35 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_36 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_37 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_38 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_4 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_5 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_6 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_7 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_8 Normal file → Executable file
View File

0
assets/slike/glavna_referenca/.DS_Store_9 Normal file → Executable file
View File

View File

Before

Width:  |  Height:  |  Size: 288 KiB

After

Width:  |  Height:  |  Size: 288 KiB

View File

Before

Width:  |  Height:  |  Size: 284 KiB

After

Width:  |  Height:  |  Size: 284 KiB

View File

Before

Width:  |  Height:  |  Size: 306 KiB

After

Width:  |  Height:  |  Size: 306 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

View File

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

Before

Width:  |  Height:  |  Size: 195 KiB

After

Width:  |  Height:  |  Size: 195 KiB

View File

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 132 KiB

View File

Before

Width:  |  Height:  |  Size: 174 KiB

After

Width:  |  Height:  |  Size: 174 KiB

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 166 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 318 KiB

After

Width:  |  Height:  |  Size: 318 KiB

0
assets/slike/glavna_referenca/Animals/insects/bee.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 264 KiB

After

Width:  |  Height:  |  Size: 264 KiB

View File

Before

Width:  |  Height:  |  Size: 262 KiB

After

Width:  |  Height:  |  Size: 262 KiB

View File

Before

Width:  |  Height:  |  Size: 261 KiB

After

Width:  |  Height:  |  Size: 261 KiB

View File

Before

Width:  |  Height:  |  Size: 372 KiB

After

Width:  |  Height:  |  Size: 372 KiB

View File

Before

Width:  |  Height:  |  Size: 384 KiB

After

Width:  |  Height:  |  Size: 384 KiB

View File

Before

Width:  |  Height:  |  Size: 250 KiB

After

Width:  |  Height:  |  Size: 250 KiB

View File

Before

Width:  |  Height:  |  Size: 311 KiB

After

Width:  |  Height:  |  Size: 311 KiB

View File

Before

Width:  |  Height:  |  Size: 296 KiB

After

Width:  |  Height:  |  Size: 296 KiB

View File

Before

Width:  |  Height:  |  Size: 298 KiB

After

Width:  |  Height:  |  Size: 298 KiB

View File

Before

Width:  |  Height:  |  Size: 315 KiB

After

Width:  |  Height:  |  Size: 315 KiB

View File

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View File

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 188 KiB

View File

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 145 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View File

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 34 KiB

View File

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View File

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 124 KiB

View File

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View File

Before

Width:  |  Height:  |  Size: 356 KiB

After

Width:  |  Height:  |  Size: 356 KiB

View File

Before

Width:  |  Height:  |  Size: 231 KiB

After

Width:  |  Height:  |  Size: 231 KiB

View File

Before

Width:  |  Height:  |  Size: 333 KiB

After

Width:  |  Height:  |  Size: 333 KiB

View File

Before

Width:  |  Height:  |  Size: 390 KiB

After

Width:  |  Height:  |  Size: 390 KiB

View File

Before

Width:  |  Height:  |  Size: 444 KiB

After

Width:  |  Height:  |  Size: 444 KiB

View File

Before

Width:  |  Height:  |  Size: 397 KiB

After

Width:  |  Height:  |  Size: 397 KiB

View File

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View File

Before

Width:  |  Height:  |  Size: 280 KiB

After

Width:  |  Height:  |  Size: 280 KiB

View File

Before

Width:  |  Height:  |  Size: 374 KiB

After

Width:  |  Height:  |  Size: 374 KiB

View File

Before

Width:  |  Height:  |  Size: 314 KiB

After

Width:  |  Height:  |  Size: 314 KiB

View File

Before

Width:  |  Height:  |  Size: 315 KiB

After

Width:  |  Height:  |  Size: 315 KiB

View File

Before

Width:  |  Height:  |  Size: 296 KiB

After

Width:  |  Height:  |  Size: 296 KiB

View File

Before

Width:  |  Height:  |  Size: 375 KiB

After

Width:  |  Height:  |  Size: 375 KiB

Some files were not shown because too many files have changed in this diff Show More