Attributes
Includes Deno configuration
Repository
Current version released
3 years ago
Versions
Canvy
Deno library for basic canvas manipulation inspired by P5JS.
Testing
Test Canvy’s functions from index.ts.
Call deno task watch to watch for changes and continuously build the output file.
Development References
Problems
Longer References
const myImage = new Image(100, 200);
myImage.src = "picture.jpg";
document.body.appendChild(myImage);
myImage.complete;Notes
Canvy is meant mainly for games, as such the default behavior of interpolation between pixels was disabled in favor of nearest-neighbor (which helps preserve pixel-art when scaling assets).