diff --git a/gameboycolor.png b/gameboycolor.png index 4e6e55c..43f85a3 100644 Binary files a/gameboycolor.png and b/gameboycolor.png differ diff --git a/gb.py b/gb.py index b0f7033..4cbf4e0 100644 --- a/gb.py +++ b/gb.py @@ -117,9 +117,9 @@ def build_gif(self, image_path, delete=True, fps=120, output_name="action.mp4", os.path.join(script_dir, gif_outline) ).convert("RGB") img = Image.open(os.path.join(gif_dir, file)).convert("RGB") - img = img.resize((184, 170)) + img = img.resize((822, 733)) combined = gameboy_outline.copy() - combined.paste(img, (159, 138)) #338, 308 + combined.paste(img, (370, 319)) #370, 319 1192, 1052 combined.save(os.path.join(gif_dir, file)) images.append(os.path.join(gif_dir, file))