This commit is contained in:
MaddoScientisto 2026-04-12 14:45:08 +02:00
commit a9153546ae
56 changed files with 6731 additions and 258 deletions

View file

@ -0,0 +1,8 @@
from PIL import Image
IN = r"K:\ghidra\Crusader_Decomp\binary\vram_weapons.png"
OUT = r"K:\ghidra\Crusader_Decomp\binary\crop_weapon_row.png"
box = (80,44,360,92)
img = Image.open(IN)
crop = img.crop(box)
crop.save(OUT)
print('wrote', OUT)