p5.js:filter
フィルタ(filter)
reference | filter()
フィルタの例、ブラー(ぼかし)をかける 非推奨.icon
code:sketch.js
let img
function preload() {
const proxy = 'https://cors-anywhere.herokuapp.com/' //CORSを超えるのに必要
img = loadImage(proxy +'https://i.gyazo.com/de07fbaab5c961dc7fd3720ba956bbd3.png')
}
function setup() {
createCanvas(512, 768)
}
function draw() {
image(img, 0, 0)
// フィルタ
filter(BLUR, 5);
}
実行→
#p5.js-term
https://img.shields.io/badge/p5.js-filter-ED225D.svg?logo=p5.js&style=for-the-badge