Skip to content

Instantly share code, notes, and snippets.

@georgesb
Last active May 3, 2020 00:29
Show Gist options
  • Save georgesb/d1c505754a9c4d596d863d79a53c12e6 to your computer and use it in GitHub Desktop.
Save georgesb/d1c505754a9c4d596d863d79a53c12e6 to your computer and use it in GitHub Desktop.
Load Image
<script src="https://cdn.jsdelivr.net/npm/p5@0.10.2/lib/p5.js"></script>
<script src="https://cdn.jsdelivr.net/gh/georgesb/lib/drawGrid.js"></script>
<script src="script.js"></script>
let img;
function preload() {
img = loadImage('https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Cat_November_2010-1a.jpg/180px-Cat_November_2010-1a.jpg');
}
function setup(){
createCanvas(650,450);
drawGrid();
image(img,100,100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment