enhance(frontend/image-effector): add blockNoise fx

This commit is contained in:
syuilo
2025-06-15 10:55:11 +09:00
parent 5bec8ba6b0
commit ce90fee586
5 changed files with 127 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ import { FX_stripe } from './fxs/stripe.js';
import { FX_threshold } from './fxs/threshold.js';
import { FX_watermarkPlacement } from './fxs/watermarkPlacement.js';
import { FX_zoomLines } from './fxs/zoomLines.js';
import { FX_blockNoise } from './fxs/blockNoise.js';
import type { ImageEffectorFx } from './ImageEffector.js';
export const FXS = [
@@ -36,4 +37,5 @@ export const FXS = [
FX_stripe,
FX_polkadot,
FX_checker,
FX_blockNoise,
] as const satisfies ImageEffectorFx<string, any>[];