Skip to content

Instantly share code, notes, and snippets.

@hiiamboris
Created December 11, 2018 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiiamboris/19251675224a2d182f6f91b284576d7b to your computer and use it in GitHub Desktop.
Save hiiamboris/19251675224a2d182f6f91b284576d7b to your computer and use it in GitHub Desktop.
image inspector func
Red []
inspect: function [i] [
pixel: 10x10
? (also i': make image! i/size * pixel
x: y: repeat y i/size/y [
repeat x i/size/x [
p: as-pair x y
draw i' compose [
line-width 1 pen (i/:p) fill-pen (i/:p)
reset-matrix translate (pixel * (p - 1x1))
box 0x0 (pixel - 2x2)
]
]
])
i'
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment