Noisify
Want to turn your favorite photo into a stunning wallpaper? Just snap a pic with your camera and let our app add a beautiful gradient and some cool noise effects. It’s like magic!
Install / Use
/learn @mrevanzak/NoisifyREADME
Noisify is an app to turn your favorite photo into a stunning wallpaper. Just snap a pic with your camera and let our app add a beautiful gradient and some cool noise effects. It’s like magic!
How it works
Noisify uses react-native-vision-camera to display a Camera preview.
Using the VisionCamera's Frame Processors API and the VisionCamera's Skia Frame Processors integration, we can draws 2d graphics (in this case blur and noisy filter) directly to Camera Frames in realtime at 60 FPS.
This is the relevant code:
const paint = useGrainyBlurShader();
const frameProcessor = useSkiaFrameProcessor(
(frame) => {
"worklet";
frame.render(paint);
},
[paint],
);
export function useGrainyBlurShader() {
const blur = useControlCenterStore((state) => state.blur);
const noiseStrength = useControlCenterStore((state) => state.noiseStrength);
const saturation = useControlCenterStore((state) => state.saturation);
return useMemo(() => {
shaderBuilder.setUniform("noiseStrength", [noiseStrength]); // Set the noise strength
shaderBuilder.setUniform("saturation", [saturation]); // Set the saturation factor
const blurFilter = Skia.ImageFilter.MakeBlur(
blur,
blur,
TileMode.Mirror,
null,
);
const grainyBlurFilter = Skia.ImageFilter.MakeRuntimeShader(
shaderBuilder,
null,
blurFilter,
);
const paint = Skia.Paint();
paint.setImageFilter(grainyBlurFilter);
return paint;
}, [blur, noiseStrength, saturation]);
}
See
index.tsxfor the full code.
Related Skills
node-connect
348.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
109.1kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
348.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
348.5kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
