Skip to content

Instantly share code, notes, and snippets.

@CnrLwlss
Created January 3, 2025 12:18
Show Gist options
  • Save CnrLwlss/a1713fdc505ad5d5d25d69f140732571 to your computer and use it in GitHub Desktop.
Save CnrLwlss/a1713fdc505ad5d5d25d69f140732571 to your computer and use it in GitHub Desktop.
Generate a random greyscale image and enlarge it using "nearest neighbours".
using Images
smallpix = rand(UInt8, 8, 8)
bigpix = repeat(smallpix, inner=(200,200))
save("greychess.png",bigpix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment