We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi,
I'm trying to blur the window with filter(BLUR, 12);
, but when I upload it to my phone, it just displays a black screen... Is there any way to blur the screen in Android Mode ?
Answers
Please post your code.
Kf
PImage img; void setup() { fullScreen(); img = loadImage("Vincent.jpg"); img.resize(0, 20); image(img, 0, 0); ellipse(width/2, height/2, 50,50); filter(BLUR, 12); ellipse(width/2, height/3, 50,50); }
@FATGEEK===
try this:
PS:: you can also apply a blur filter with android RenderScript (ScriptIntrinsicBlur);