Skip to content

Commit

Permalink
Merge pull request #26 from TomCasavant/gameboycolor
Browse files Browse the repository at this point in the history
Updated gameboy color image
  • Loading branch information
TomCasavant authored May 8, 2024
2 parents 6a378ec + 57cf3bf commit 45f30df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified gameboycolor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions gb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit 45f30df

Please sign in to comment.