Skip to content

Instantly share code, notes, and snippets.

@BenjaminSantiago
Created November 21, 2022 19:08
Show Gist options
  • Save BenjaminSantiago/0ed378a9771758f814060630259d6f8f to your computer and use it in GitHub Desktop.
Save BenjaminSantiago/0ed378a9771758f814060630259d6f8f to your computer and use it in GitHub Desktop.
simple image loading example
"""
image is from here:
https://www.pngkit.com/bigpic/u2w7q8t4r5u2w7w7/
Not sure the attribution
"""
size(500, 500)
#our PNG is transparent so this matters
background(255,0,255)
pacPERSON = loadImage("PACguy.png")
image(pacPERSON, 10, 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment